public enum RepresentationType extends Enum<RepresentationType>
sum or numericValue.
Attributes of type RepresentationType cannot take on any other values.
| Enum Constant and Description |
|---|
numericValue |
sum |
| Modifier and Type | Method and Description |
|---|---|
static RepresentationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepresentationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepresentationType sum
public static final RepresentationType numericValue
public static RepresentationType[] values()
for (RepresentationType c : RepresentationType.values()) System.out.println(c);
public static RepresentationType 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 © 2009–2017. All rights reserved.