net.java.ao.it.model
Enum Deleted

java.lang.Object
  extended by java.lang.Enum<Deleted>
      extended by net.java.ao.it.model.Deleted
All Implemented Interfaces:
Serializable, Comparable<Deleted>

public enum Deleted
extends Enum<Deleted>


Enum Constant Summary
FALSE
           
TRUE
           
 
Method Summary
 boolean asBoolean()
           
 String asString()
           
static Deleted fromString(String s)
           
static Deleted valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Deleted[] 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

TRUE

public static final Deleted TRUE

FALSE

public static final Deleted FALSE
Method Detail

values

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

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

valueOf

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

asBoolean

public boolean asBoolean()

asString

public String asString()

fromString

public static Deleted fromString(String s)


Copyright © 2007-2014. All Rights Reserved.