Enum Settings.Option
- java.lang.Object
-
- java.lang.Enum<Settings.Option>
-
- com.dslplatform.compiler.client.parameters.Settings.Option
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Settings.Option>
- Enclosing class:
- Settings
public static enum Settings.Option extends java.lang.Enum<Settings.Option>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_RECORDDISABLE_COMPANIONDOCUMENTATION_METADATAJACKSONJAVA_BEANSJAXBJODA_TIMELAZY_LOAD_WARNINGLEGACYMANUAL_JSONMINIMAL_SERIALIZATIONMULTI_TENANCYNO_HELPERSNO_PREPARE_EXECUTEPERMISSION_ACCESSSOURCE_ONLYURI_REFERENCEUTC
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringdescriptionprivate java.lang.Stringvalue
-
Constructor Summary
Constructors Modifier Constructor Description privateOption(java.lang.String value, java.lang.String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static Settings.Optionfrom(java.lang.String value)java.lang.StringtoString()static Settings.OptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Settings.Option[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE_RECORD
public static final Settings.Option ACTIVE_RECORD
-
UTC
public static final Settings.Option UTC
-
JACKSON
public static final Settings.Option JACKSON
-
JAVA_BEANS
public static final Settings.Option JAVA_BEANS
-
MANUAL_JSON
public static final Settings.Option MANUAL_JSON
-
NO_HELPERS
public static final Settings.Option NO_HELPERS
-
MULTI_TENANCY
public static final Settings.Option MULTI_TENANCY
-
LEGACY
public static final Settings.Option LEGACY
-
SOURCE_ONLY
public static final Settings.Option SOURCE_ONLY
-
JODA_TIME
public static final Settings.Option JODA_TIME
-
NO_PREPARE_EXECUTE
public static final Settings.Option NO_PREPARE_EXECUTE
-
MINIMAL_SERIALIZATION
public static final Settings.Option MINIMAL_SERIALIZATION
-
LAZY_LOAD_WARNING
public static final Settings.Option LAZY_LOAD_WARNING
-
URI_REFERENCE
public static final Settings.Option URI_REFERENCE
-
JAXB
public static final Settings.Option JAXB
-
PERMISSION_ACCESS
public static final Settings.Option PERMISSION_ACCESS
-
DISABLE_COMPANION
public static final Settings.Option DISABLE_COMPANION
-
DOCUMENTATION_METADATA
public static final Settings.Option DOCUMENTATION_METADATA
-
-
Method Detail
-
values
public static Settings.Option[] 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 (Settings.Option c : Settings.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Settings.Option 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
-
from
private static Settings.Option from(java.lang.String value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Settings.Option>
-
-