org.springframework.core.enums
Class AbstractGenericLabeledEnum

java.lang.Object
  extended by org.springframework.core.enums.AbstractLabeledEnum
      extended by org.springframework.core.enums.AbstractGenericLabeledEnum
All Implemented Interfaces:
Serializable, Comparable, LabeledEnum
Direct Known Subclasses:
LetterCodedLabeledEnum, ShortCodedLabeledEnum, StringCodedLabeledEnum

public abstract class AbstractGenericLabeledEnum
extends AbstractLabeledEnum

Base class for labeled enum instances that aren't static.

Since:
1.2.6
Author:
Keith Donald
See Also:
Serialized Form

Field Summary
 
Fields inherited from interface org.springframework.core.enums.LabeledEnum
CODE_ORDER, DEFAULT_ORDER, LABEL_ORDER
 
Constructor Summary
protected AbstractGenericLabeledEnum(String label)
          Create a new StaticLabeledEnum instance.
 
Method Summary
 String getLabel()
          Return a descriptive, optional label.
 
Methods inherited from class org.springframework.core.enums.AbstractLabeledEnum
compareTo, equals, getType, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.springframework.core.enums.LabeledEnum
getCode
 

Constructor Detail

AbstractGenericLabeledEnum

protected AbstractGenericLabeledEnum(String label)
Create a new StaticLabeledEnum instance.

Parameters:
label - the label; if null), the enum's code will be used as label
Method Detail

getLabel

public String getLabel()
Description copied from interface: LabeledEnum
Return a descriptive, optional label.



Copyright © 2002-2008 The Spring Framework.