org.tolven.trim
Enum EntityClass

java.lang.Object
  extended by java.lang.Enum<EntityClass>
      extended by org.tolven.trim.EntityClass
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EntityClass>

public enum EntityClass
extends java.lang.Enum<EntityClass>

Java class for EntityClass.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="EntityClass">
   <restriction base="{urn:tolven-org:trim:4.0}cs">
     <enumeration value="ENT"/>
     <enumeration value="RGRP"/>
     <enumeration value="HCE"/>
     <enumeration value="LIV"/>
     <enumeration value="PSN"/>
     <enumeration value="NLIV"/>
     <enumeration value="ANM"/>
     <enumeration value="MIC"/>
     <enumeration value="PLNT"/>
     <enumeration value="MAT"/>
     <enumeration value="CHEM"/>
     <enumeration value="FOOD"/>
     <enumeration value="MMAT"/>
     <enumeration value="CONT"/>
     <enumeration value="HOLD"/>
     <enumeration value="DEV"/>
     <enumeration value="CER"/>
     <enumeration value="MODDV"/>
     <enumeration value="PLC"/>
     <enumeration value="CITY"/>
     <enumeration value="COUNTRY"/>
     <enumeration value="COUNTY"/>
     <enumeration value="PROVINCE"/>
     <enumeration value="ORG"/>
     <enumeration value="PUB"/>
     <enumeration value="STATE"/>
     <enumeration value="NAT"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ANM
           
CER
           
CHEM
           
CITY
           
CONT
           
COUNTRY
           
COUNTY
           
DEV
           
ENT
           
FOOD
           
HCE
           
HOLD
           
LIV
           
MAT
           
MIC
           
MMAT
           
MODDV
           
NAT
           
NLIV
           
ORG
           
PLC
           
PLNT
           
PROVINCE
           
PSN
           
PUB
           
RGRP
           
STATE
           
 
Method Summary
static EntityClass fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EntityClass valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EntityClass[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENT

public static final EntityClass ENT

RGRP

public static final EntityClass RGRP

HCE

public static final EntityClass HCE

LIV

public static final EntityClass LIV

PSN

public static final EntityClass PSN

NLIV

public static final EntityClass NLIV

ANM

public static final EntityClass ANM

MIC

public static final EntityClass MIC

PLNT

public static final EntityClass PLNT

MAT

public static final EntityClass MAT

CHEM

public static final EntityClass CHEM

FOOD

public static final EntityClass FOOD

MMAT

public static final EntityClass MMAT

CONT

public static final EntityClass CONT

HOLD

public static final EntityClass HOLD

DEV

public static final EntityClass DEV

CER

public static final EntityClass CER

MODDV

public static final EntityClass MODDV

PLC

public static final EntityClass PLC

CITY

public static final EntityClass CITY

COUNTRY

public static final EntityClass COUNTRY

COUNTY

public static final EntityClass COUNTY

PROVINCE

public static final EntityClass PROVINCE

ORG

public static final EntityClass ORG

PUB

public static final EntityClass PUB

STATE

public static final EntityClass STATE

NAT

public static final EntityClass NAT
Method Detail

values

public static EntityClass[] 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 (EntityClass c : EntityClass.values())
    System.out.println(c);

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

valueOf

public static EntityClass 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

value

public java.lang.String value()

fromValue

public static EntityClass fromValue(java.lang.String v)