org.opengts.db
Enum EntityManager.EntityType

java.lang.Object
  extended by java.lang.Enum<EntityManager.EntityType>
      extended by org.opengts.db.EntityManager.EntityType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EntityManager.EntityType>, EnumTools.IntValue, EnumTools.StringLocale
Enclosing class:
EntityManager

public static enum EntityManager.EntityType
extends java.lang.Enum<EntityManager.EntityType>
implements EnumTools.StringLocale, EnumTools.IntValue


Enum Constant Summary
ANIMAL
           
CONTAINER
           
DRIVER
           
EQUIPMENT
           
GENERAL
           
PACKAGE
           
PERSON
           
RFID_00
           
RFID_01
           
RFID_02
           
RFID_03
           
RFID_04
           
TOOL
           
TRAILER
           
 
Method Summary
 int getIntValue()
           
 java.lang.String getName()
           
 boolean isDriver()
           
 boolean isPerson()
           
 boolean isRFID()
           
 boolean isTrailer()
           
 boolean isType(int type)
           
 java.lang.String toString()
           
 java.lang.String toString(java.util.Locale loc)
           
static EntityManager.EntityType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EntityManager.EntityType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GENERAL

public static final EntityManager.EntityType GENERAL

TRAILER

public static final EntityManager.EntityType TRAILER

DRIVER

public static final EntityManager.EntityType DRIVER

PERSON

public static final EntityManager.EntityType PERSON

ANIMAL

public static final EntityManager.EntityType ANIMAL

CONTAINER

public static final EntityManager.EntityType CONTAINER

PACKAGE

public static final EntityManager.EntityType PACKAGE

TOOL

public static final EntityManager.EntityType TOOL

EQUIPMENT

public static final EntityManager.EntityType EQUIPMENT

RFID_00

public static final EntityManager.EntityType RFID_00

RFID_01

public static final EntityManager.EntityType RFID_01

RFID_02

public static final EntityManager.EntityType RFID_02

RFID_03

public static final EntityManager.EntityType RFID_03

RFID_04

public static final EntityManager.EntityType RFID_04
Method Detail

values

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

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

valueOf

public static EntityManager.EntityType 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

getName

public java.lang.String getName()

getIntValue

public int getIntValue()
Specified by:
getIntValue in interface EnumTools.IntValue

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<EntityManager.EntityType>

toString

public java.lang.String toString(java.util.Locale loc)
Specified by:
toString in interface EnumTools.StringLocale

isTrailer

public boolean isTrailer()

isDriver

public boolean isDriver()

isPerson

public boolean isPerson()

isRFID

public boolean isRFID()

isType

public boolean isType(int type)