RTI Connext Java API
Version 5.1.0
|
A superclass for all type-safe enumerated types. More...
Public Member Functions | |
final int | ordinal () |
The integral value of this enumerated constant. | |
Object | copy_from (Object src) |
final String | name () |
The name of this enum constant, as declared in the enum declaration. | |
final String | toString () |
The string value of this enum constant. | |
Public Member Functions inherited from Copyable | |
Object | copy_from (Object src) |
Copy value of a data type from source. | |
Protected Member Functions | |
Enum (String name, int ordinal) | |
The constructor. | |
A superclass for all type-safe enumerated types.
This class is not part of the DDS specification per se. It has been introduced to facilitate the implementation of the numerous enumerated types in the specification and is based on the Java enumeration JSR. See http://www.jcp.org/aboutJava/communityprocess/jsr/tiger/enum.html.
|
protected |
The constructor.
ordinal | The value of the ordinal field of the new enumerated constant. |
name | The value of the name field of the new enumerated constant. |
final int ordinal | ( | ) |
The integral value of this enumerated constant.
For example, in an IDL definition like this:
...the value of Foo.BAR.ordinal()
will be 2. If the assignment ("<code>= 2</code>") is omitted, the ordinal value will be 0.
Object copy_from | ( | Object | src | ) |
This is the implementation of the Copyable
interface. While this implementation is not strictly a copy it can have the same effect. In order to use it properly, assign the result of the operation to the member that is the target of the copy. So, for example: myEnumField = myEnumField.copy_from(anotherInstanceOfEnum); Since Enum
s are immutable there cannot be a true copy made but this method will return a reference to the same enumerate as anotherInstanceOfEnum
.
src
final String name | ( | ) |
The name of this enum constant, as declared in the enum declaration.
Most programmers should use the com.rti.dds.util.Enum.toString method rather than accessing this field.
final String toString | ( | ) |
The string value of this enum constant.