Enum Class AggregationSchema
- All Implemented Interfaces:
Serializable,Comparable<AggregationSchema>,Constable
All XML-aggregation schemas.
- Author:
- Ralf Wisser
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAggregation as explicit list.Embed attributes directly.Aggregation as implicit list.No aggregation. -
Method Summary
Modifier and TypeMethodDescriptiontoString()Gets human readable name.static AggregationSchemaReturns the enum constant of this class with the specified name.static AggregationSchema[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXPLICIT_LIST
Aggregation as explicit list. -
IMPLICIT_LIST
Aggregation as implicit list. -
FLAT
Embed attributes directly. -
NONE
No aggregation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
Gets human readable name.- Overrides:
toStringin classEnum<AggregationSchema>- Returns:
- human readable name
-