public enum AccessHint extends java.lang.Enum<AccessHint>
| 枚举常量和说明 |
|---|
NONE |
NORMAL |
SEQUENTIAL |
WILLNEED |
| 限定符和类型 | 方法和说明 |
|---|---|
static AccessHint |
getAccessHint(byte byteIdentifier)
Get the AccessHint enumeration value by
passing the byte identifier to this method.
|
byte |
getValue()
Returns the byte value of the enumerations value.
|
static AccessHint |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static AccessHint[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AccessHint NONE
public static final AccessHint NORMAL
public static final AccessHint SEQUENTIAL
public static final AccessHint WILLNEED
public static AccessHint[] values()
for (AccessHint c : AccessHint.values()) System.out.println(c);
public static AccessHint valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public byte getValue()
Returns the byte value of the enumerations value.
public static AccessHint getAccessHint(byte byteIdentifier)
Get the AccessHint enumeration value by passing the byte identifier to this method.
byteIdentifier - of AccessHint.java.lang.IllegalArgumentException - if the access hint for the byteIdentifier
cannot be found