public enum Overflow extends Enum<Overflow>
OCLforUMLPackage.getOverflow()| Enum Constant and Description |
|---|
INVALID
The 'Invalid' literal object.
|
MODULO
The 'Modulo' literal object.
|
SATURATE
The 'Saturate' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
INVALID_VALUE
The 'Invalid' literal value.
|
static int |
MODULO_VALUE
The 'Modulo' literal value.
|
static int |
SATURATE_VALUE
The 'Saturate' literal value.
|
static List<Overflow> |
VALUES
A public read-only list of all the 'Overflow' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static Overflow |
get(int value)
Returns the 'Overflow' literal with the specified integer value.
|
static Overflow |
get(String literal)
Returns the 'Overflow' literal with the specified literal value.
|
static Overflow |
getByName(String name)
Returns the 'Overflow' 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 Overflow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overflow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overflow INVALID
INVALID_VALUEpublic static final Overflow SATURATE
SATURATE_VALUEpublic static final Overflow MODULO
MODULO_VALUEpublic static final int INVALID_VALUE
If the meaning of 'Invalid' literal object isn't clear, there really should be more of a description here...
INVALID,
Constant Field Valuespublic static final int SATURATE_VALUE
If the meaning of 'Saturate' literal object isn't clear, there really should be more of a description here...
SATURATE,
Constant Field Valuespublic static final int MODULO_VALUE
If the meaning of 'Modulo' literal object isn't clear, there really should be more of a description here...
MODULO,
Constant Field Valuespublic static Overflow[] values()
for (Overflow c : Overflow.values()) System.out.println(c);
public static Overflow 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 Overflow get(String literal)
literal - the literal.null.public static Overflow getByName(String name)
name - the name.null.public static Overflow 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.