org.yaml.snakeyaml
Enum DumperOptions.Version

java.lang.Object
  extended by java.lang.Enum<DumperOptions.Version>
      extended by org.yaml.snakeyaml.DumperOptions.Version
All Implemented Interfaces:
Serializable, Comparable<DumperOptions.Version>
Enclosing class:
DumperOptions

public static enum DumperOptions.Version
extends Enum<DumperOptions.Version>

Specification version. Currently supported 1.0 and 1.1


Enum Constant Summary
V1_0
           
V1_1
           
 
Method Summary
 Integer[] getArray()
           
 String getRepresentation()
           
 String toString()
           
static DumperOptions.Version valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DumperOptions.Version[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

V1_0

public static final DumperOptions.Version V1_0

V1_1

public static final DumperOptions.Version V1_1
Method Detail

values

public static final DumperOptions.Version[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(DumperOptions.Version c : DumperOptions.Version.values())
        System.out.println(c);

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

valueOf

public static DumperOptions.Version 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

getArray

public Integer[] getArray()

getRepresentation

public String getRepresentation()

toString

public String toString()
Overrides:
toString in class Enum<DumperOptions.Version>


Copyright © 2008-2012. All Rights Reserved.