Package nablarch.test.core.reader
Enum SendSyncMessageParser.ErrorMode
java.lang.Object
java.lang.Enum<SendSyncMessageParser.ErrorMode>
nablarch.test.core.reader.SendSyncMessageParser.ErrorMode
- All Implemented Interfaces:
Serializable
,Comparable<SendSyncMessageParser.ErrorMode>
,java.lang.constant.Constable
- Enclosing class:
- SendSyncMessageParser
エラー処理モードのEnum
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionメッセージ送受信エラーの場合を想定し、MessagingExceptionが発生するモードタイムアウトエラーの場合を想定し、nullを返却するモード -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
モードを有効にする場合に、セルに記載する値を取得するstatic boolean
isErrorMode
(String mode) 指定された文字列表現のモードが、この列挙型の要素の文字列表現と一致するか否か。 もし、列挙型の要素の中でどれか1つでも一致するものがあれば、true
を返す。Returns the enum constant of this type with the specified name.static SendSyncMessageParser.ErrorMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TIMEOUT
タイムアウトエラーの場合を想定し、nullを返却するモード -
MSG_EXCEPTION
メッセージ送受信エラーの場合を想定し、MessagingExceptionが発生するモード
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
モードを有効にする場合に、セルに記載する値を取得する- Returns:
- モードを有効にする場合に、セルに記載する値
-
isErrorMode
指定された文字列表現のモードが、この列挙型の要素の文字列表現と一致するか否か。 もし、列挙型の要素の中でどれか1つでも一致するものがあれば、true
を返す。- Parameters:
mode
- 文字列表現のエラーモード- Returns:
- エラーモードを表す文字列の場合はtrue
-