Package com.microfocus.zfe.haapi.ps
Enum OIAStatus
- java.lang.Object
-
- java.lang.Enum<OIAStatus>
-
- com.microfocus.zfe.haapi.ps.OIAStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<OIAStatus>
public enum OIAStatus extends Enum<OIAStatus>
Enumeration of the supported OIA status values. Status are general state potentially valid for all host types. Host specific states are prepended with the host type.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getMask()
Returns a bitmask for the OIA status that can be used for serialization of OIA statusString
toString()
static OIAStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static OIAStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTROLLER_READY
public static final OIAStatus CONTROLLER_READY
-
A_ONLINE
public static final OIAStatus A_ONLINE
-
MY_JOB
public static final OIAStatus MY_JOB
-
NEWLINE
public static final OIAStatus NEWLINE
-
DISPLAY_MEMORY
public static final OIAStatus DISPLAY_MEMORY
-
TIME
public static final OIAStatus TIME
-
SYS_LOCK
public static final OIAStatus SYS_LOCK
-
COMM_CHECK
public static final OIAStatus COMM_CHECK
-
PROG_CHECK
public static final OIAStatus PROG_CHECK
-
ELSEWHERE
public static final OIAStatus ELSEWHERE
-
FN_MINUS
public static final OIAStatus FN_MINUS
-
WHAT_KEY
public static final OIAStatus WHAT_KEY
-
MORE_THAN
public static final OIAStatus MORE_THAN
-
SYM_MINUS
public static final OIAStatus SYM_MINUS
-
INPUT_ERROR
public static final OIAStatus INPUT_ERROR
-
LIMITED_EMULATION
public static final OIAStatus LIMITED_EMULATION
-
INSERT
public static final OIAStatus INSERT
-
FORMS_MODE
public static final OIAStatus FORMS_MODE
-
COMM_ERR_REM
public static final OIAStatus COMM_ERR_REM
-
MSG_WAITING
public static final OIAStatus MSG_WAITING
-
ENCRYPT
public static final OIAStatus ENCRYPT
-
NUM_FIELD
public static final OIAStatus NUM_FIELD
-
TRANSMIT_MODE
public static final OIAStatus TRANSMIT_MODE
-
SPOW_LATCH
public static final OIAStatus SPOW_LATCH
-
INHIBIT_EOL_WRAP
public static final OIAStatus INHIBIT_EOL_WRAP
-
BLOCK_TRANSFER_PAGE
public static final OIAStatus BLOCK_TRANSFER_PAGE
-
INHIBIT_DC1
public static final OIAStatus INHIBIT_DC1
-
INHIBIT_DC2
public static final OIAStatus INHIBIT_DC2
-
CAPS_LOCK
public static final OIAStatus CAPS_LOCK
-
BLOCK_MODE
public static final OIAStatus BLOCK_MODE
-
ENQUIRE_MODE
public static final OIAStatus ENQUIRE_MODE
-
LOCAL_MODE
public static final OIAStatus LOCAL_MODE
-
RECEIVE_MODE
public static final OIAStatus RECEIVE_MODE
-
LTAI_MODE
public static final OIAStatus LTAI_MODE
-
SEARCH_MODE
public static final OIAStatus SEARCH_MODE
-
INSERT_IN_LINE
public static final OIAStatus INSERT_IN_LINE
-
INSERT_IN_PAGE
public static final OIAStatus INSERT_IN_PAGE
-
RESERVED_IEEE_EXPONENT
public static final OIAStatus RESERVED_IEEE_EXPONENT
-
-
Method Detail
-
values
public static OIAStatus[] 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 (OIAStatus c : OIAStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OIAStatus 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
-
getMask
public long getMask()
Returns a bitmask for the OIA status that can be used for serialization of OIA status- Returns:
- the status mask.
-
-