public static enum StatRequest.Target extends Enum<StatRequest.Target>
| Enum Constant and Description |
|---|
FHANDLE
The file is described by a file handle.
|
PATH
The file is described by its path.
|
| Modifier and Type | Method and Description |
|---|---|
static StatRequest.Target |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatRequest.Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatRequest.Target PATH
public static final StatRequest.Target FHANDLE
public static StatRequest.Target[] values()
for (StatRequest.Target c : StatRequest.Target.values()) System.out.println(c);
public static StatRequest.Target 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 © 2011–2018 dCache.org. All rights reserved.