Enum DataSetOrganization
- java.lang.Object
-
- java.lang.Enum<DataSetOrganization>
-
- com.compuware.api.topaz.hostresources.zos.DataSetOrganization
-
- All Implemented Interfaces:
Serializable
,Comparable<DataSetOrganization>
public enum DataSetOrganization extends Enum<DataSetOrganization>
Enumeration of z/OS dataset organizations.- Since:
- 1.0.0
- Version:
- 2.0.0
- See Also:
IPartitionedDataSetCharacteristics.getDataSetOrganization()
,ISequentialDataSetCharacteristics.getDataSetOrganization()
- Restriction:
- This enum is not intended to be extended by clients.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CX
z/OS dataset organization of "CX" (BTAM or QTAM line group).DA
z/OS dataset organization of "DA" (direct access).GS
z/OS dataset organization of "GS" (graphics).IS
z/OS dataset organization of "IS" (ISAM).PO
z/OS dataset organization of "PO" (partitioned).PS
z/OS dataset organization of "PS" (physical sequential).TQ
z/OS dataset organization of "TQ" (TCAM message queue).TR
z/OS dataset organization of "TR" (TCAM 3705).TX
z/OS dataset organization of "TX" (TCAM line group).UNDEFINED
Undefined z/OS dataset organization.VS
z/OS dataset organization of "VS" (VSAM).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataSetOrganization
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataSetOrganization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CX
public static final DataSetOrganization CX
z/OS dataset organization of "CX" (BTAM or QTAM line group).- Since:
- 1.0.0
-
DA
public static final DataSetOrganization DA
z/OS dataset organization of "DA" (direct access).- Since:
- 1.0.0
-
GS
public static final DataSetOrganization GS
z/OS dataset organization of "GS" (graphics).- Since:
- 1.0.0
-
IS
public static final DataSetOrganization IS
z/OS dataset organization of "IS" (ISAM).- Since:
- 1.0.0
-
PO
public static final DataSetOrganization PO
z/OS dataset organization of "PO" (partitioned).- Since:
- 1.0.0
-
PS
public static final DataSetOrganization PS
z/OS dataset organization of "PS" (physical sequential).- Since:
- 1.0.0
-
TQ
public static final DataSetOrganization TQ
z/OS dataset organization of "TQ" (TCAM message queue).- Since:
- 1.0.0
-
TR
public static final DataSetOrganization TR
z/OS dataset organization of "TR" (TCAM 3705).- Since:
- 1.0.0
-
TX
public static final DataSetOrganization TX
z/OS dataset organization of "TX" (TCAM line group).- Since:
- 1.0.0
-
VS
public static final DataSetOrganization VS
z/OS dataset organization of "VS" (VSAM).- Since:
- 1.0.0
-
UNDEFINED
public static final DataSetOrganization UNDEFINED
Undefined z/OS dataset organization.- Since:
- 1.0.0
-
-
Method Detail
-
values
public static DataSetOrganization[] 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 (DataSetOrganization c : DataSetOrganization.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSetOrganization 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
-
-