public enum FileProcessJobType extends Enum<FileProcessJobType>
| Enum Constant and Description |
|---|
FileCompress |
FileHashCode |
FileUncompress |
| Modifier and Type | Method and Description |
|---|---|
static FileProcessJobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileProcessJobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileProcessJobType FileCompress
public static final FileProcessJobType FileUncompress
public static final FileProcessJobType FileHashCode
public static FileProcessJobType[] values()
for (FileProcessJobType c : FileProcessJobType.values()) System.out.println(c);
public static FileProcessJobType 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 © 2023. All rights reserved.