public enum SerializerType extends Enum<SerializerType>
| Enum Constant and Description |
|---|
FSTSer |
Json |
JsonNoRef |
JsonNoRefPretty |
MinBin |
UnsafeBinary |
| Modifier and Type | Method and Description |
|---|---|
static SerializerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerializerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerializerType FSTSer
public static final SerializerType MinBin
public static final SerializerType Json
public static final SerializerType JsonNoRef
public static final SerializerType JsonNoRefPretty
public static final SerializerType UnsafeBinary
public static SerializerType[] values()
for (SerializerType c : SerializerType.values()) System.out.println(c);
public static SerializerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.