public static enum ManifestFile.FileValidity extends Enum<ManifestFile.FileValidity>
Enum Constant and Description |
---|
DOESNOTEXIST |
INVALID |
OUTOFDATE |
UNKNOWN |
VALID |
Modifier and Type | Method and Description |
---|---|
static ManifestFile.FileValidity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManifestFile.FileValidity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManifestFile.FileValidity VALID
public static final ManifestFile.FileValidity OUTOFDATE
public static final ManifestFile.FileValidity DOESNOTEXIST
public static final ManifestFile.FileValidity UNKNOWN
public static final ManifestFile.FileValidity INVALID
public static ManifestFile.FileValidity[] values()
for (ManifestFile.FileValidity c : ManifestFile.FileValidity.values()) System.out.println(c);
public static ManifestFile.FileValidity 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 (c) 2017, SAS Institute Inc., Cary, NC, USA