de.inovat.vew.autoexport
Enum BastFormat

java.lang.Object
  extended by java.lang.Enum<BastFormat>
      extended by de.inovat.vew.autoexport.BastFormat
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BastFormat>

public enum BastFormat
extends java.lang.Enum<BastFormat>

Aufzählungstyp für unterschiedliche BASt-Band-Exportformate

Version:
$Revision: 780 $ / $Date: 2012-10-31 11:44:41 +0100 (Mi, 31 Okt 2012) $ / ($Author: HCK $)
Author:
inovat, innovative systeme - verkehr - tunnel - technik, Dipl.-Ing. Hans Christian Kniß (HCK)

Enum Constant Summary
AXL2009
           
V2004
           
V2007
           
 
Method Summary
static BastFormat valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BastFormat[] 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

V2004

public static final BastFormat V2004

V2007

public static final BastFormat V2007

AXL2009

public static final BastFormat AXL2009
Method Detail

values

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

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

valueOf

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