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:
- 4.0
- Author:
- Frank Giordano
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATASETdataset typeJOBjob typeJOB_FILEjob file typeMEMBERmember typeMVS_CONSOLEmvs console typePROPSproperties typeTSO_CONSOLEtso console typeTSO_STOPtso stop typeUNIX_FILEunix file typeUNIX_ZFSunix zfs typeZOS_LOG_ITEMzos log item typeZOS_LOG_REPLYzos log reply itemZOSMF_INFOzosmf info typeZOSMF_SYSTEMSzosmf systems type
-
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
dataset type
-
JOB
public static final ParseType JOB
job type
-
JOB_FILE
public static final ParseType JOB_FILE
job file type
-
MEMBER
public static final ParseType MEMBER
member type
-
MVS_CONSOLE
public static final ParseType MVS_CONSOLE
mvs console type
-
PROPS
public static final ParseType PROPS
properties type
-
TSO_CONSOLE
public static final ParseType TSO_CONSOLE
tso console type
-
TSO_STOP
public static final ParseType TSO_STOP
tso stop type
-
UNIX_FILE
public static final ParseType UNIX_FILE
unix file type
-
UNIX_ZFS
public static final ParseType UNIX_ZFS
unix zfs type
-
ZOS_LOG_ITEM
public static final ParseType ZOS_LOG_ITEM
zos log item type
-
ZOS_LOG_REPLY
public static final ParseType ZOS_LOG_REPLY
zos log reply item
-
ZOSMF_SYSTEMS
public static final ParseType ZOSMF_SYSTEMS
zosmf systems type
-
ZOSMF_INFO
public static final ParseType ZOSMF_INFO
zosmf info type
-
-
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
-
-