org.acplt.oncrpc.apps.jrpcgen
Class JrpcgenEnum
java.lang.Object
|
+--org.acplt.oncrpc.apps.jrpcgen.JrpcgenEnum
- public class JrpcgenEnum
- extends java.lang.Object
The JrpcgenEnum class represents a single enumeration
from an rpcgen "x"-file. It is a "container" for the elements (constants)
belonging to this enumeration.
|
Field Summary |
java.util.Vector |
enums
Contains enumeration elements as well as their values. |
java.lang.String |
identifier
Enumeration identifier. |
|
Constructor Summary |
JrpcgenEnum(java.lang.String identifier,
java.util.Vector enums)
Constructs a JrpcgenEnum and sets the identifier and all
its enumeration elements. |
|
Method Summary |
void |
dump()
Dumps the enumeration together with its elements to
System.out. |
java.lang.String |
toString()
Returns the fully qualified identifier.
return fully qualified identifier. |
| Methods inherited from class java.lang.Object |
,
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
registerNatives,
wait,
wait,
wait |
identifier
public java.lang.String identifier
- Enumeration identifier.
enums
public java.util.Vector enums
- Contains enumeration elements as well as their values. The elements
are of class
JrpcgenConst.
JrpcgenEnum
public JrpcgenEnum(java.lang.String identifier,
java.util.Vector enums)
- Constructs a
JrpcgenEnum and sets the identifier and all
its enumeration elements.
- Parameters:
identifier - Identifier to be declared.enums - Vector of enumeration elements of class JrpcgenConst.
toString
public java.lang.String toString()
- Returns the fully qualified identifier.
return fully qualified identifier.
- Overrides:
- toString in class java.lang.Object
dump
public void dump()
- Dumps the enumeration together with its elements to
System.out.