public static enum FileMonitor.Status extends Enum<FileMonitor.Status>
Enum Constant and Description |
---|
CHANGING |
DONE |
RESTART |
START |
VALID |
Modifier and Type | Method and Description |
---|---|
static FileMonitor.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileMonitor.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileMonitor.Status START
public static final FileMonitor.Status CHANGING
public static final FileMonitor.Status VALID
public static final FileMonitor.Status DONE
public static final FileMonitor.Status RESTART
public static FileMonitor.Status[] values()
for (FileMonitor.Status c : FileMonitor.Status.values()) System.out.println(c);
public static FileMonitor.Status 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 © 2009–2020 Waarp. All rights reserved.