C E I L R S T

C

com.plotnix.enum - package com.plotnix.enum
 

E

Enum - class com.plotnix.enum.Enum.
Enum represents a value characterized by the following properties: It has an integer value that uniquely identifies it among other Enums belonging to the same class.
Enum() - Constructor for class com.plotnix.enum.Enum
Initialize the Enum, using default integer and string values.
enum(Class) - Static method in class com.plotnix.enum.Enum
Returns an array of all Enums of the specified class in the order they were created.
enum(Class, int) - Static method in class com.plotnix.enum.Enum
Returns the Enum of the specified class that has the specified integer value, or null if there is no such Enum.
enum(Class, String) - Static method in class com.plotnix.enum.Enum
Returns the Enum of the specified class that has the specified st, or null if there is no such Enum.
Enum(int) - Constructor for class com.plotnix.enum.Enum
Initialize the Enum with an integer value.
Enum(int, String) - Constructor for class com.plotnix.enum.Enum
Initialize the Enum with an integer value and a default label.
Enum(String) - Constructor for class com.plotnix.enum.Enum
Initialize the Enum with a string value.
Enum(String, String) - Constructor for class com.plotnix.enum.Enum
Initialize the Enum with a string value and a default label.

I

initIntegerEnum(Class) - Static method in class com.plotnix.enum.Enum
 
intValue() - Method in class com.plotnix.enum.Enum
Returns the Enum's integer value.

L

loadEnum(Class) - Static method in class com.plotnix.enum.Enum
Loads properties from an enumClass.properties resource file.
loadIntegerEnum(Class) - Static method in class com.plotnix.enum.Enum
Loads properties from an enumClass.properties resource file.

R

readResolve() - Method in class com.plotnix.enum.Enum
Ensures uniqueness of Enums during deserialization.

S

stringValue() - Method in class com.plotnix.enum.Enum
Returns the string value of this Enum.

T

toString() - Method in class com.plotnix.enum.Enum
Returns this Enum's human readable description in the default locale.
toString(Locale) - Method in class com.plotnix.enum.Enum
Returns this Enum's human readable description in the specified locale.

C E I L R S T

Copyright (c) 2001 - PLOTNIX, Inc