fr.ybo.opendata.rennes.sax
Enum BaliseType

java.lang.Object
  extended by java.lang.Enum<BaliseType>
      extended by fr.ybo.opendata.rennes.sax.BaliseType
All Implemented Interfaces:
Serializable, Comparable<BaliseType>

public enum BaliseType
extends Enum<BaliseType>

Type de balise.


Enum Constant Summary
BOOLEAN
          Type Boolean (converti un String en boolean).
DOUBLE
          Type Double (converti un String en double).
INTEGER
          Type Integer (converti un String en int).
STRING
          Type chaine (converti un String en String).
 
Method Summary
static BaliseType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BaliseType[] 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

STRING

public static final BaliseType STRING
Type chaine (converti un String en String).


BOOLEAN

public static final BaliseType BOOLEAN
Type Boolean (converti un String en boolean).


INTEGER

public static final BaliseType INTEGER
Type Integer (converti un String en int).


DOUBLE

public static final BaliseType DOUBLE
Type Double (converti un String en double).

Method Detail

values

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

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

valueOf

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


Copyright © 2012. All Rights Reserved.