Package nablarch.test.core.file
Enum Class LineSeparator
- All Implemented Interfaces:
Serializable
,Comparable<LineSeparator>
,Constable
改行コードを列挙するクラス。
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
改行コードの表現を評価する。
本列挙クラスの要素名である場合、すなわちLineSeparator#valueOf(String)
が値を返却する場合は その値が持つ改行コードを返却する。それ以外の場合は、与えられた表現がそれ自身改行コードとみなして、 その引数をそのまま返却する。toString()
static LineSeparator
Returns the enum constant of this class with the specified name.static LineSeparator[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
なし -
CR
CR -
LF
LF -
CRLF
CRLF
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<LineSeparator>
- Returns:
- そのインスタンスが表す改行コード
-
evaluate
改行コードの表現を評価する。
本列挙クラスの要素名である場合、すなわちLineSeparator#valueOf(String)
が値を返却する場合は その値が持つ改行コードを返却する。それ以外の場合は、与えられた表現がそれ自身改行コードとみなして、 その引数をそのまま返却する。(例)
LineSeparator.evaluate("CRLF"); // --> "\r\n"が返却される。 LineSeparator.evaluate(":"); // --> ":"が返却される。
- Parameters:
expression
- 改行コード表現- Returns:
- 評価された値
-