public enum Rounding extends Enum<Rounding>
OCLforUMLPackage.getRounding()| Enum Constant and Description |
|---|
CEILING
The 'Ceiling' literal object.
|
CONGRUENT
The 'Congruent' literal object.
|
FLOOR
The 'Floor' literal object.
|
NEAREST
The 'Nearest' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
CEILING_VALUE
The 'Ceiling' literal value.
|
static int |
CONGRUENT_VALUE
The 'Congruent' literal value.
|
static int |
FLOOR_VALUE
The 'Floor' literal value.
|
static int |
NEAREST_VALUE
The 'Nearest' literal value.
|
static List<Rounding> |
VALUES
A public read-only list of all the 'Rounding' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static Rounding |
get(int value)
Returns the 'Rounding' literal with the specified integer value.
|
static Rounding |
get(String literal)
Returns the 'Rounding' literal with the specified literal value.
|
static Rounding |
getByName(String name)
Returns the 'Rounding' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static Rounding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rounding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rounding NEAREST
NEAREST_VALUEpublic static final Rounding CEILING
CEILING_VALUEpublic static final Rounding FLOOR
FLOOR_VALUEpublic static final Rounding CONGRUENT
CONGRUENT_VALUEpublic static final int NEAREST_VALUE
If the meaning of 'Nearest' literal object isn't clear, there really should be more of a description here...
NEAREST,
Constant Field Valuespublic static final int CEILING_VALUE
If the meaning of 'Ceiling' literal object isn't clear, there really should be more of a description here...
CEILING,
Constant Field Valuespublic static final int FLOOR_VALUE
If the meaning of 'Floor' literal object isn't clear, there really should be more of a description here...
FLOOR,
Constant Field Valuespublic static final int CONGRUENT_VALUE
If the meaning of 'Congruent' literal object isn't clear, there really should be more of a description here...
CONGRUENT,
Constant Field Valuespublic static Rounding[] values()
for (Rounding c : Rounding.values()) System.out.println(c);
public static Rounding 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 nullpublic static Rounding get(String literal)
literal - the literal.null.public static Rounding getByName(String name)
name - the name.null.public static Rounding get(int value)
value - the integer value.null.public int getValue()
public String getName()
public String getLiteral()
Copyright © 2005, 2018 IBM Corporation and others. All Rights Reserved.