Package in.dragonbra.javasteam.types
Enum KeyValue.Type
- java.lang.Object
-
- java.lang.Enum<KeyValue.Type>
-
- in.dragonbra.javasteam.types.KeyValue.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KeyValue.Type>
- Enclosing class:
- KeyValue
public static enum KeyValue.Type extends java.lang.Enum<KeyValue.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description bytecode()static KeyValue.Typefrom(byte code)static KeyValue.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KeyValue.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final KeyValue.Type NONE
-
STRING
public static final KeyValue.Type STRING
-
INT32
public static final KeyValue.Type INT32
-
FLOAT32
public static final KeyValue.Type FLOAT32
-
POINTER
public static final KeyValue.Type POINTER
-
WIDESTRING
public static final KeyValue.Type WIDESTRING
-
COLOR
public static final KeyValue.Type COLOR
-
UINT64
public static final KeyValue.Type UINT64
-
END
public static final KeyValue.Type END
-
INT64
public static final KeyValue.Type INT64
-
-
Method Detail
-
values
public static KeyValue.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyValue.Type c : KeyValue.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyValue.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
code
public byte code()
-
from
public static KeyValue.Type from(byte code)
-
-