64 public static SMPIOCapability get(
final String name)
throws IllegalArgumentException {
75 case (
byte)0x00:
return DISPLAY_ONLY;
76 case (
byte)0x01:
return DISPLAY_YES_NO;
77 case (
byte)0x02:
return KEYBOARD_ONLY;
78 case (
byte)0x03:
return NO_INPUT_NO_OUTPUT;
79 case (
byte)0x04:
return KEYBOARD_DISPLAY;
80 default:
return UNSET;
SMPIOCapability(final byte v)
NO_INPUT_NO_OUTPUT
No input not output, value 3.
UNSET
Denoting unset value, i.e.
DISPLAY_ONLY
Display output only, value 0.
KEYBOARD_DISPLAY
Display output and keyboard input, value 4.
KEYBOARD_ONLY
Keyboard input only, value 2.
DISPLAY_YES_NO
Display output and boolean confirmation input keys only, value 1.