public enum RepresentationType extends java.lang.Enum<RepresentationType>
sum or numericValue.
Attributes of type RepresentationType cannot take on any other values.
| Enum Constant | Description |
|---|---|
numericValue |
|
sum |
| Modifier and Type | Method | Description |
|---|---|---|
static RepresentationType |
valueOf(java.lang.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(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 nullCopyright © 2009–2022. All rights reserved.