org.ow2.jasmine.probe.api.generated
Enum TypeNameType

java.lang.Object
  extended by java.lang.Enum<TypeNameType>
      extended by org.ow2.jasmine.probe.api.generated.TypeNameType
All Implemented Interfaces:
Serializable, Comparable<TypeNameType>

public enum TypeNameType
extends Enum<TypeNameType>

Java class for typeNameType.

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

 <simpleType name="typeNameType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="int"/>
     <enumeration value="short"/>
     <enumeration value="long"/>
     <enumeration value="double"/>
     <enumeration value="float"/>
     <enumeration value="boolean"/>
     <enumeration value="string"/>
     <enumeration value="object_name"/>
     <enumeration value="unknown"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
BOOLEAN
           
DOUBLE
           
FLOAT
           
INT
           
LONG
           
OBJECT_NAME
           
SHORT
           
STRING
           
UNKNOWN
           
 
Method Summary
static TypeNameType fromValue(String v)
           
 String value()
           
static TypeNameType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TypeNameType[] 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

INT

public static final TypeNameType INT

SHORT

public static final TypeNameType SHORT

LONG

public static final TypeNameType LONG

DOUBLE

public static final TypeNameType DOUBLE

FLOAT

public static final TypeNameType FLOAT

BOOLEAN

public static final TypeNameType BOOLEAN

STRING

public static final TypeNameType STRING

OBJECT_NAME

public static final TypeNameType OBJECT_NAME

UNKNOWN

public static final TypeNameType UNKNOWN
Method Detail

values

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

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

valueOf

public static TypeNameType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static TypeNameType fromValue(String v)


Copyright © 2013 OW2 Consortium. All Rights Reserved.