Package it.unimi.di.big.mg4j.index
Enum QuasiSuccinctIndex.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<QuasiSuccinctIndex.PropertyKeys>
-
- it.unimi.di.big.mg4j.index.QuasiSuccinctIndex.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<QuasiSuccinctIndex.PropertyKeys>
,java.lang.constant.Constable
- Enclosing class:
- QuasiSuccinctIndex
public static enum QuasiSuccinctIndex.PropertyKeys extends Enum<QuasiSuccinctIndex.PropertyKeys>
Symbolic names for additional properties of aQuasiSuccinctIndex
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BYTEORDER
The byte order of the index.
-
Method Summary
Modifier and Type Method Description static QuasiSuccinctIndex.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static QuasiSuccinctIndex.PropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYTEORDER
public static final QuasiSuccinctIndex.PropertyKeys BYTEORDER
The byte order of the index.
-
-
Method Detail
-
values
public static QuasiSuccinctIndex.PropertyKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuasiSuccinctIndex.PropertyKeys valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-