Serializable
, Comparable<Option>
public enum Option extends Enum<Option>
Enum Constant | Description |
---|---|
CASE_INSENSITIVE_FACTORY |
|
CASE_INSENSITIVE_PROPERTIES |
|
FIELD_INJECTION |
|
IGNORE_MISSING_PROPERTIES |
|
LAZY_ASSIGNMENT |
|
NAMED_PARAMETERS |
|
PRIVATE_CONSTRUCTOR |
|
PRIVATE_FACTORY |
|
PRIVATE_PROPERTIES |
|
STATIC_PROPERTIES |
Modifier and Type | Method | Description |
---|---|---|
static Option |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Option[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Option PRIVATE_PROPERTIES
public static final Option STATIC_PROPERTIES
public static final Option FIELD_INJECTION
public static final Option IGNORE_MISSING_PROPERTIES
public static final Option CASE_INSENSITIVE_PROPERTIES
public static final Option LAZY_ASSIGNMENT
public static final Option PRIVATE_CONSTRUCTOR
public static final Option PRIVATE_FACTORY
public static final Option CASE_INSENSITIVE_FACTORY
public static final Option NAMED_PARAMETERS
public static Option[] values()
for (Option c : Option.values()) System.out.println(c);
public static Option 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 © 2005–2018. All rights reserved.