Uses of Class
net.lucidviews.util.Enumeration

Packages that use Enumeration
net.lucidviews.util Classes in this package generally extend or enhance java.lang.* or java.util.*
net.lucidviews.util.text Utility classes that operate on text values. 
 

Uses of Enumeration in net.lucidviews.util
 

Fields in net.lucidviews.util declared as Enumeration
protected  Enumeration<? super V> Enumeration._superEnumeration
          The super enumeration - this enumeration is a sub-list within the super enumeration.
static Enumeration Properties.EnumParamMustExist.ENUMERATION
          A list of enumeration values.
protected static Enumeration Enumeration.NO_SUPER_ENUMERATION
          Value assigned to the _superEnumeration variable when there is no super enumeration.
 

Methods in net.lucidviews.util that return Enumeration
 Enumeration Properties.EnumParamMustExist.getEnumeration()
           
abstract  Enumeration<T> EnumValue.getEnumeration()
          Obtain the enumeration this value belongs to.
 

Methods in net.lucidviews.util with parameters of type Enumeration
 EnumValue Properties.getEnumProperty(String key, Enumeration enumeration)
          Parse an enumeration value from the property with given key.
 EnumValue Properties.getEnumProperty(String key, Enumeration enumeration, EnumValue defaultValue)
          Parse an enumeration value from the property with given key, returning the default value if the property is missing or invalid.
 EnumValue Properties.getEnumProperty(String key, Enumeration enumeration, EnumValue defaultIfMissing, EnumValue defaultIfInvalid)
          Parse an enumeration value from the property with given key, returning one of the default values if the property is missing or invalid.
 

Constructors in net.lucidviews.util with parameters of type Enumeration
Enumeration(Enumeration<? super V> superEnumeration)
          Create an enumeration.
Enumeration(Enumeration<? super V> superEnumeration, int initialCapacity)
          Create an enumeration, specifying the number of values so that the enumeration list can be sized at creation, thereby improving performance.
 

Uses of Enumeration in net.lucidviews.util.text
 

Fields in net.lucidviews.util.text declared as Enumeration
static Enumeration<Strings.EnumValueMustBeValid> Strings.EnumValueMustBeValid.ENUMERATION
          Enumeration holding the values in this enum.
 

Methods in net.lucidviews.util.text that return Enumeration
 Enumeration<Strings.EnumValueMustBeValid> Strings.EnumValueMustBeValid.getEnumeration()
          Obtain the enumeration this value belongs to.
 

Methods in net.lucidviews.util.text with parameters of type Enumeration
static EnumValue Strings.parseEnumValue(EnumValue defaultValue, String string, Enumeration enumeration)
          Parse an enumeration value of the given Enumeration type from a String, returning the default value if the string was invalid.
static EnumValue Strings.parseEnumValue(String string, Enumeration enumeration)
          Parse an enumeration value of the given Enumeration type from a String.
static EnumValue Strings.parseEnumValue(String string, Enumeration enumeration, EnumValue defaultValue)
          Parse an enumeration value of the given Enumeration type from a String, returning the default value if the string was invalid.