Package com.ibm.cics.model
Enum CICSRelease
- java.lang.Object
-
- java.lang.Enum<CICSRelease>
-
- com.ibm.cics.model.CICSRelease
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CICSRelease>
public enum CICSRelease extends java.lang.Enum<CICSRelease>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description e410
e510
e520
e530
e610
e620
e630
e640
e640 - CICS TS 3.1e650
e650 - CICS TS 3.2e660
e660 - CICS TS 4.1e670
CICS TS 4.2e680
CICS TS 5.1e690
CICS TS 5.2e700
CICS TS 5.3e710
CICS TS 5.4e720
CICS TS 5.5e730
CICS TS 5.6e740
CICS TS 6.1e750
CICS TS 6.2
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static CICSRelease
fromVersion(java.lang.String cicsTSLevel)
java.lang.String
getCICSTSLevel()
static CICSRelease
getLatestRelease()
boolean
laterThan(java.lang.String cicsTSLevel)
boolean
laterThanOrEqualTo(java.lang.String cicsTSLevel)
static CICSRelease
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CICSRelease[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
e410
public static final CICSRelease e410
-
e510
public static final CICSRelease e510
-
e520
public static final CICSRelease e520
-
e530
public static final CICSRelease e530
-
e610
public static final CICSRelease e610
-
e620
public static final CICSRelease e620
-
e630
public static final CICSRelease e630
-
e640
public static final CICSRelease e640
e640 - CICS TS 3.1
-
e650
public static final CICSRelease e650
e650 - CICS TS 3.2
-
e660
public static final CICSRelease e660
e660 - CICS TS 4.1
-
e670
public static final CICSRelease e670
CICS TS 4.2
-
e680
public static final CICSRelease e680
CICS TS 5.1
-
e690
public static final CICSRelease e690
CICS TS 5.2
-
e700
public static final CICSRelease e700
CICS TS 5.3
-
e710
public static final CICSRelease e710
CICS TS 5.4
-
e720
public static final CICSRelease e720
CICS TS 5.5
-
e730
public static final CICSRelease e730
CICS TS 5.6
-
e740
public static final CICSRelease e740
CICS TS 6.1
-
e750
public static final CICSRelease e750
CICS TS 6.2
-
-
Method Detail
-
values
public static CICSRelease[] 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 (CICSRelease c : CICSRelease.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CICSRelease valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCICSTSLevel
public java.lang.String getCICSTSLevel()
-
laterThan
public boolean laterThan(java.lang.String cicsTSLevel)
-
laterThanOrEqualTo
public boolean laterThanOrEqualTo(java.lang.String cicsTSLevel)
-
fromVersion
protected static CICSRelease fromVersion(java.lang.String cicsTSLevel)
-
getLatestRelease
public static CICSRelease getLatestRelease()
-
-