public enum AggregationType extends java.lang.Enum<AggregationType>
| Enum Constant and Description |
|---|
AS_BASIC_PROPERTY |
AS_BASIC_PROPERTY_COLLECTION |
AS_COMPLEX_PROPERTY |
AS_COMPLEX_PROPERTY_COLLECTION |
NOT_FOUND |
| Modifier and Type | Method and Description |
|---|---|
static AggregationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationType NOT_FOUND
public static final AggregationType AS_BASIC_PROPERTY
public static final AggregationType AS_COMPLEX_PROPERTY
public static final AggregationType AS_BASIC_PROPERTY_COLLECTION
public static final AggregationType AS_COMPLEX_PROPERTY_COLLECTION
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null