Package net.sf.okapi.common
Enum BOMNewlineEncodingDetector.NewlineType
- java.lang.Object
-
- java.lang.Enum<BOMNewlineEncodingDetector.NewlineType>
-
- net.sf.okapi.common.BOMNewlineEncodingDetector.NewlineType
-
- All Implemented Interfaces:
Serializable,Comparable<BOMNewlineEncodingDetector.NewlineType>
- Enclosing class:
- BOMNewlineEncodingDetector
public static enum BOMNewlineEncodingDetector.NewlineType extends Enum<BOMNewlineEncodingDetector.NewlineType>
Defines type friendly newline types.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static BOMNewlineEncodingDetector.NewlineTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BOMNewlineEncodingDetector.NewlineType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CR
public static final BOMNewlineEncodingDetector.NewlineType CR
Carriage Return, Old Mac OS
-
LF
public static final BOMNewlineEncodingDetector.NewlineType LF
Line Feed, Linux/UNIX
-
CRLF
public static final BOMNewlineEncodingDetector.NewlineType CRLF
Carriage Return Line Feed, Windows
-
UNKOWN
public static final BOMNewlineEncodingDetector.NewlineType UNKOWN
UNKOWN
-
-
Method Detail
-
values
public static BOMNewlineEncodingDetector.NewlineType[] 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 (BOMNewlineEncodingDetector.NewlineType c : BOMNewlineEncodingDetector.NewlineType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BOMNewlineEncodingDetector.NewlineType 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 nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<BOMNewlineEncodingDetector.NewlineType>
-
-