persistance.wSql
Enum Edit

Object
  extended by Enum<Edit>
      extended by persistance.wSql.Edit
All Implemented Interfaces:
Serializable, Comparable<Edit>

public enum Edit
extends Enum<Edit>

Identifiant du type d'Edit

Author:
William
A_doc
Licence.

Enum Constant Summary
AREA
           
CHECK
           
DATE
           
DOUBLE
           
F2
           
INT
           
LIBE
           
MONTH
           
PHONE
           
PLAGETIMES
           
POSTAL
           
RADIO
           
SECU
           
TEXT
           
TIME
           
TIMEDELAY
           
URSS
           
YEAR
           
 
Field Summary
(package private)  int edit
           
static String TYPE_FIELD
           
 
Method Summary
static Edit valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Edit[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TIMEDELAY

public static final Edit TIMEDELAY

RADIO

public static final Edit RADIO

AREA

public static final Edit AREA

DATE

public static final Edit DATE

TIME

public static final Edit TIME

PHONE

public static final Edit PHONE

SECU

public static final Edit SECU

URSS

public static final Edit URSS

POSTAL

public static final Edit POSTAL

MONTH

public static final Edit MONTH

YEAR

public static final Edit YEAR

PLAGETIMES

public static final Edit PLAGETIMES

CHECK

public static final Edit CHECK

TEXT

public static final Edit TEXT

F2

public static final Edit F2

INT

public static final Edit INT

DOUBLE

public static final Edit DOUBLE

LIBE

public static final Edit LIBE
Field Detail

TYPE_FIELD

public static final String TYPE_FIELD
See Also:
Constant Field Values

edit

int edit
Method Detail

values

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

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

valueOf

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