public enum FileSystemType extends Enum<FileSystemType>
Enum Constant and Description |
---|
CHARACTERSPECIAL |
MVSLOCAL |
PIPE |
REMOTE |
SOCKET |
UNKNOWN |
XPFS |
Modifier and Type | Method and Description |
---|---|
static FileSystemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemType MVSLOCAL
public static final FileSystemType REMOTE
public static final FileSystemType PIPE
public static final FileSystemType SOCKET
public static final FileSystemType XPFS
public static final FileSystemType CHARACTERSPECIAL
public static final FileSystemType UNKNOWN
public static FileSystemType[] values()
for (FileSystemType c : FileSystemType.values()) System.out.println(c);
public static FileSystemType 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 © 2020 Black Hill Software Pty Ltd. All rights reserved.