public static enum FileMonitoringFunction.WatchType extends Enum<FileMonitoringFunction.WatchType>
Enum Constant and Description |
---|
ONLY_NEW_FILES |
PROCESS_ONLY_APPENDED |
REPROCESS_WITH_APPENDED |
Modifier and Type | Method and Description |
---|---|
static FileMonitoringFunction.WatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileMonitoringFunction.WatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileMonitoringFunction.WatchType ONLY_NEW_FILES
public static final FileMonitoringFunction.WatchType REPROCESS_WITH_APPENDED
public static final FileMonitoringFunction.WatchType PROCESS_ONLY_APPENDED
public static FileMonitoringFunction.WatchType[] values()
for (FileMonitoringFunction.WatchType c : FileMonitoringFunction.WatchType.values()) System.out.println(c);
public static FileMonitoringFunction.WatchType 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 © 2014–2017 The Apache Software Foundation. All rights reserved.