Package org.spongepowered.api.world
Enum SerializationBehavior
- java.lang.Object
-
- java.lang.Enum<SerializationBehavior>
-
- org.spongepowered.api.world.SerializationBehavior
-
- All Implemented Interfaces:
Serializable
,Comparable<SerializationBehavior>
public enum SerializationBehavior extends Enum<SerializationBehavior>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOMATIC
AUTOMATIC_METADATA_ONLY
MANUAL
MANUAL_METADATA_ONLY
NONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SerializationBehavior
valueOf(String name)
Returns the enum constant of this type with the specified name.static SerializationBehavior[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTOMATIC
public static final SerializationBehavior AUTOMATIC
-
AUTOMATIC_METADATA_ONLY
public static final SerializationBehavior AUTOMATIC_METADATA_ONLY
-
MANUAL
public static final SerializationBehavior MANUAL
-
MANUAL_METADATA_ONLY
public static final SerializationBehavior MANUAL_METADATA_ONLY
-
NONE
public static final SerializationBehavior NONE
-
-
Method Detail
-
values
public static SerializationBehavior[] 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 (SerializationBehavior c : SerializationBehavior.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SerializationBehavior 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
-
-