net.ajaest.jdk.data.auxi
Enum KanjiEnums.RadicalTypeEnum

java.lang.Object
  extended by java.lang.Enum<KanjiEnums.RadicalTypeEnum>
      extended by net.ajaest.jdk.data.auxi.KanjiEnums.RadicalTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<KanjiEnums.RadicalTypeEnum>
Enclosing class:
KanjiEnums

public static enum KanjiEnums.RadicalTypeEnum
extends java.lang.Enum<KanjiEnums.RadicalTypeEnum>


Enum Constant Summary
bottom
           
enclosure
           
left
           
original
           
right
           
top
           
variable
           
 
Method Summary
static KanjiEnums.RadicalTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static KanjiEnums.RadicalTypeEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

original

public static final KanjiEnums.RadicalTypeEnum original

top

public static final KanjiEnums.RadicalTypeEnum top

bottom

public static final KanjiEnums.RadicalTypeEnum bottom

left

public static final KanjiEnums.RadicalTypeEnum left

right

public static final KanjiEnums.RadicalTypeEnum right

enclosure

public static final KanjiEnums.RadicalTypeEnum enclosure

variable

public static final KanjiEnums.RadicalTypeEnum variable
Method Detail

values

public static KanjiEnums.RadicalTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (KanjiEnums.RadicalTypeEnum c : KanjiEnums.RadicalTypeEnum.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static KanjiEnums.RadicalTypeEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null