public enum FileNotFoundMode extends Enum<FileNotFoundMode>
Enum Constant and Description |
---|
CLOSE
关闭
|
THROWS
抛出异常
|
WAIT
等待
|
WAIT_COUNT
等待一定的次数
|
WAIT_TIMES
等待一定的时间
|
Modifier and Type | Method and Description |
---|---|
static FileNotFoundMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileNotFoundMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileNotFoundMode CLOSE
public static final FileNotFoundMode WAIT
public static final FileNotFoundMode WAIT_TIMES
public static final FileNotFoundMode WAIT_COUNT
public static final FileNotFoundMode THROWS
public static FileNotFoundMode[] values()
for (FileNotFoundMode c : FileNotFoundMode.values()) System.out.println(c);
public static FileNotFoundMode 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 © 2024. All rights reserved.