Enum CsvAlignmentDataReader.AlignmentDataType
- java.lang.Object
-
- java.lang.Enum<CsvAlignmentDataReader.AlignmentDataType>
-
- cern.accsoft.steering.aloha.read.csv.CsvAlignmentDataReader.AlignmentDataType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CsvAlignmentDataReader.AlignmentDataType>
- Enclosing class:
- CsvAlignmentDataReader
public static enum CsvAlignmentDataReader.AlignmentDataType extends java.lang.Enum<CsvAlignmentDataReader.AlignmentDataType>
defines the type of csv-file, which we will are expecting to read.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PTS_ALESAGEPTS_FAISCEAU
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CsvAlignmentDataReader.AlignmentDataTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CsvAlignmentDataReader.AlignmentDataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PTS_FAISCEAU
public static final CsvAlignmentDataReader.AlignmentDataType PTS_FAISCEAU
-
PTS_ALESAGE
public static final CsvAlignmentDataReader.AlignmentDataType PTS_ALESAGE
-
-
Method Detail
-
values
public static CsvAlignmentDataReader.AlignmentDataType[] 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 (CsvAlignmentDataReader.AlignmentDataType c : CsvAlignmentDataReader.AlignmentDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CsvAlignmentDataReader.AlignmentDataType 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 namejava.lang.NullPointerException- if the argument is null
-
-