@Title(value="File system") public enum FileSystemConf extends Enum<FileSystemConf>
| Modifier and Type | Method and Description |
|---|---|
static FileSystemConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.path.conf") @DefaultValue(value="") public static final FileSystemConf CONF
@Path(value="oxalis.path.inbound") @DefaultValue(value="inbound") public static final FileSystemConf INBOUND
@Path(value="oxalis.path.plugin") @Nullable public static final FileSystemConf PLUGIN
public static FileSystemConf[] values()
for (FileSystemConf c : FileSystemConf.values()) System.out.println(c);
public static FileSystemConf 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 © 2022 NorStella. All rights reserved.