Enum VSAMOrganization
- java.lang.Object
-
- java.lang.Enum<VSAMOrganization>
-
- com.compuware.api.topaz.hostresources.zos.VSAMOrganization
-
- All Implemented Interfaces:
Serializable
,Comparable<VSAMOrganization>
public enum VSAMOrganization extends Enum<VSAMOrganization>
z/OS VSAM organizations.- Since:
- 1.0.0
- Version:
- 2.0.0
- See Also:
IVSAMCluster.getOrganization()
- Restriction:
- This enum is not intended to be extended by clients.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTRY_SEQUENCED
VSAM organization of "entry sequenced".KEY_SEQUENCED
VSAM organization of "key sequenced".LINEAR
VSAM organization of "linear".RELATIVE_RECORD
VSAM organization of "relative record".
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VSAMOrganization
valueOf(String name)
Returns the enum constant of this type with the specified name.static VSAMOrganization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTRY_SEQUENCED
public static final VSAMOrganization ENTRY_SEQUENCED
VSAM organization of "entry sequenced".- Since:
- 1.0.0
-
KEY_SEQUENCED
public static final VSAMOrganization KEY_SEQUENCED
VSAM organization of "key sequenced".- Since:
- 1.0.0
-
LINEAR
public static final VSAMOrganization LINEAR
VSAM organization of "linear".- Since:
- 1.0.0
-
RELATIVE_RECORD
public static final VSAMOrganization RELATIVE_RECORD
VSAM organization of "relative record".- Since:
- 1.0.0
-
-
Method Detail
-
values
public static VSAMOrganization[] 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 (VSAMOrganization c : VSAMOrganization.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VSAMOrganization 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
-
-