Enum FieldSerializerBenchmark.BenchmarkState.ObjectType
- java.lang.Object
-
- java.lang.Enum<FieldSerializerBenchmark.BenchmarkState.ObjectType>
-
- com.esotericsoftware.kryo.benchmarks.FieldSerializerBenchmark.BenchmarkState.ObjectType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FieldSerializerBenchmark.BenchmarkState.ObjectType>
- Enclosing class:
- FieldSerializerBenchmark.BenchmarkState
public static enum FieldSerializerBenchmark.BenchmarkState.ObjectType extends java.lang.Enum<FieldSerializerBenchmark.BenchmarkState.ObjectType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldSerializerBenchmark.BenchmarkState.ObjectTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldSerializerBenchmark.BenchmarkState.ObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
sample
public static final FieldSerializerBenchmark.BenchmarkState.ObjectType sample
-
media
public static final FieldSerializerBenchmark.BenchmarkState.ObjectType media
-
-
Method Detail
-
values
public static FieldSerializerBenchmark.BenchmarkState.ObjectType[] 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 (FieldSerializerBenchmark.BenchmarkState.ObjectType c : FieldSerializerBenchmark.BenchmarkState.ObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldSerializerBenchmark.BenchmarkState.ObjectType 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
-
-