public enum CharSequenceDerivation extends Enum<CharSequenceDerivation> implements Derivation<CharSequence>
| 枚举常量和说明 |
|---|
INSTANCE |
| 限定符和类型 | 方法和说明 |
|---|---|
<T> T |
derive(T rootKey,
CharSequence derivationPath,
CkdFunction<T> ckdFunction)
Traverse the nodes from the root key node to find the node referenced by the path.
|
static int |
hard(int index) |
static boolean |
isHardened(int i) |
static CharSequenceDerivation |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static CharSequenceDerivation[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CharSequenceDerivation INSTANCE
public static CharSequenceDerivation[] values()
for (CharSequenceDerivation c : CharSequenceDerivation.values()) System.out.println(c);
public static CharSequenceDerivation valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static int hard(int index)
public static boolean isHardened(int i)
public <T> T derive(T rootKey,
CharSequence derivationPath,
CkdFunction<T> ckdFunction)
Derivationderive 在接口中 Derivation<CharSequence>T - The type of node we are visitingrootKey - The root of the pathderivationPath - The path to followckdFunction - Allows you to follow one linkCopyright © 2021. All rights reserved.