public enum PrimitiveDefaultValueMode extends Enum<PrimitiveDefaultValueMode>
Enum Constant and Description |
---|
ASSIGNED
Default values of primitive types will be treated like any other value.
|
UNASSIGNED
Default values of primitive types will be treated as if the property has not been set.
|
Modifier and Type | Method and Description |
---|---|
static PrimitiveDefaultValueMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveDefaultValueMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveDefaultValueMode ASSIGNED
public static final PrimitiveDefaultValueMode UNASSIGNED
public static PrimitiveDefaultValueMode[] values()
for (PrimitiveDefaultValueMode c : PrimitiveDefaultValueMode.values()) System.out.println(c);
public static PrimitiveDefaultValueMode 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 © 2016. All rights reserved.