Package jline.lib.m3a
Enum M3aCompressMethod
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum M3aCompressMethod extends Enum<M3aCompressMethod>
Compression method enumeration
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<M3aCompressMethod>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description AMAP_2STATETwo-state acyclic MAP compression (AMAP)
-
Method Summary
Modifier and Type Method Description final M3aCompressMethodvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<M3aCompressMethod>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<M3aCompressMethod>getEntries()Compression method enumeration -
-
Method Detail
-
valueOf
final M3aCompressMethod valueOf(String value)
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.)
-
values
final Array<M3aCompressMethod> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<M3aCompressMethod> getEntries()
Compression method enumeration
-
-
-
-