public static enum RemoteFileConfiguration.PathSeparator extends Enum<RemoteFileConfiguration.PathSeparator>
Modifier and Type | Method and Description |
---|---|
static RemoteFileConfiguration.PathSeparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteFileConfiguration.PathSeparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteFileConfiguration.PathSeparator UNIX
public static final RemoteFileConfiguration.PathSeparator Windows
public static final RemoteFileConfiguration.PathSeparator Auto
public static RemoteFileConfiguration.PathSeparator[] values()
for (RemoteFileConfiguration.PathSeparator c : RemoteFileConfiguration.PathSeparator.values()) System.out.println(c);
public static RemoteFileConfiguration.PathSeparator 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 nullApache Camel