public static enum InvalidSourceSignal.ErrorCause extends Enum<InvalidSourceSignal.ErrorCause>
Enum Constant and Description |
---|
IO_ERROR
I/Oエラーが発生しました。
|
SOURCE_FILE_MALFORMED
ソースファイルが不正な形式です。
|
Modifier and Type | Method and Description |
---|---|
static InvalidSourceSignal.ErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvalidSourceSignal.ErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidSourceSignal.ErrorCause SOURCE_FILE_MALFORMED
public static final InvalidSourceSignal.ErrorCause IO_ERROR
public static InvalidSourceSignal.ErrorCause[] values()
for (InvalidSourceSignal.ErrorCause c : InvalidSourceSignal.ErrorCause.values()) System.out.println(c);
public static InvalidSourceSignal.ErrorCause valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.