Enum RecordFormat
- java.lang.Object
-
- java.lang.Enum<RecordFormat>
-
- com.compuware.api.topaz.hostresources.zos.RecordFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<RecordFormat>
public enum RecordFormat extends Enum<RecordFormat>
Enumeration of z/OS record formats.- Since:
- 1.0.0
- Version:
- 2.0.0
- See Also:
IPartitionedDataSetCharacteristics.getRecordFormat()
,ISequentialDataSetCharacteristics.getRecordFormat()
- Restriction:
- This enum is not intended to be extended by clients.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description F
z/OS record format of "F" (fixed-length).FA
z/OS record format of "FA" (fixed-length, American Standards Association print-control characters).FB
z/OS record format of "FB" (fixed-length, blocked).FBA
z/OS record format of "FBA" (fixed-length, blocked, American Standards Association print-control characters).FBM
z/OS record format of "FBM" (fixed-length, blocked, machine print-control codes).FBS
z/OS record format of "FBS" (fixed-length, blocked, standard).FM
z/OS record format of "FM" (fixed-length, machine print-control codes).NOT_RECOGNIZED
Indicates the z/OS record format is not recognized by the z/OS system.U
z/OS record format of "U" (undefined-length).UA
z/OS record format of "UA" (undefined-length, American Standards Association print-control characters).UM
z/OS record format of "UM" (undefined-length, machine print-control codes).V
z/OS record format of "V" (variable-length).VA
z/OS record format of "VA" (variable-length, American Standards Association print-control characters).VB
z/OS record format of "VB" (variable-length, blocked).VBA
z/OS record format of "VBA" (variable-length, blocked, American Standards Association print-control characters).VBM
z/OS record format of "VBM" (variable-length, blocked, machine print-control codes).VBS
z/OS record format of "VBS" (variable-length, blocked, spanned).VM
z/OS record format of "VM" (variable-length, machine print-control codes).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecordFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static RecordFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
F
public static final RecordFormat F
z/OS record format of "F" (fixed-length).- Since:
- 1.0.0
-
FA
public static final RecordFormat FA
z/OS record format of "FA" (fixed-length, American Standards Association print-control characters).- Since:
- 1.0.0
-
FB
public static final RecordFormat FB
z/OS record format of "FB" (fixed-length, blocked).- Since:
- 1.0.0
-
FBA
public static final RecordFormat FBA
z/OS record format of "FBA" (fixed-length, blocked, American Standards Association print-control characters).- Since:
- 1.0.0
-
FBM
public static final RecordFormat FBM
z/OS record format of "FBM" (fixed-length, blocked, machine print-control codes).- Since:
- 1.0.0
-
FBS
public static final RecordFormat FBS
z/OS record format of "FBS" (fixed-length, blocked, standard).- Since:
- 1.0.0
-
FM
public static final RecordFormat FM
z/OS record format of "FM" (fixed-length, machine print-control codes).- Since:
- 1.0.0
-
U
public static final RecordFormat U
z/OS record format of "U" (undefined-length).- Since:
- 1.0.0
-
UA
public static final RecordFormat UA
z/OS record format of "UA" (undefined-length, American Standards Association print-control characters).- Since:
- 1.0.0
-
UM
public static final RecordFormat UM
z/OS record format of "UM" (undefined-length, machine print-control codes).- Since:
- 1.0.0
-
V
public static final RecordFormat V
z/OS record format of "V" (variable-length).- Since:
- 1.0.0
-
VA
public static final RecordFormat VA
z/OS record format of "VA" (variable-length, American Standards Association print-control characters).- Since:
- 1.0.0
-
VB
public static final RecordFormat VB
z/OS record format of "VB" (variable-length, blocked).- Since:
- 1.0.0
-
VBA
public static final RecordFormat VBA
z/OS record format of "VBA" (variable-length, blocked, American Standards Association print-control characters).- Since:
- 1.0.0
-
VBM
public static final RecordFormat VBM
z/OS record format of "VBM" (variable-length, blocked, machine print-control codes).- Since:
- 1.0.0
-
VBS
public static final RecordFormat VBS
z/OS record format of "VBS" (variable-length, blocked, spanned).- Since:
- 1.0.0
-
VM
public static final RecordFormat VM
z/OS record format of "VM" (variable-length, machine print-control codes).- Since:
- 1.0.0
-
NOT_RECOGNIZED
public static final RecordFormat NOT_RECOGNIZED
Indicates the z/OS record format is not recognized by the z/OS system.- Since:
- 1.0.0
-
-
Method Detail
-
values
public static RecordFormat[] 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 (RecordFormat c : RecordFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecordFormat 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
-
-