Package zowe.client.sdk.parse.type
Enum ParseType
- java.lang.Object
-
- java.lang.Enum<ParseType>
-
- zowe.client.sdk.parse.type.ParseType
-
- All Implemented Interfaces:
Serializable,Comparable<ParseType>
public enum ParseType extends Enum<ParseType>
Represents json parse operation type- Version:
- 2.0
- Author:
- Frank Giordano
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATASETJOBJOB_FILEMEMBERMVS_CONSOLEPROPSTSO_CONSOLETSO_STOPUNIX_FILEUNIX_ZFSZOSMF_DEFINED_SYSTEMSZOSMF_INFO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ParseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATASET
public static final ParseType DATASET
-
JOB
public static final ParseType JOB
-
JOB_FILE
public static final ParseType JOB_FILE
-
MEMBER
public static final ParseType MEMBER
-
MVS_CONSOLE
public static final ParseType MVS_CONSOLE
-
PROPS
public static final ParseType PROPS
-
TSO_CONSOLE
public static final ParseType TSO_CONSOLE
-
TSO_STOP
public static final ParseType TSO_STOP
-
UNIX_FILE
public static final ParseType UNIX_FILE
-
UNIX_ZFS
public static final ParseType UNIX_ZFS
-
ZOSMF_DEFINED_SYSTEMS
public static final ParseType ZOSMF_DEFINED_SYSTEMS
-
ZOSMF_INFO
public static final ParseType ZOSMF_INFO
-
-
Method Detail
-
values
public static ParseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ParseType c : ParseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParseType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-