public enum OperateType extends Enum<OperateType>
Enum Constant and Description |
---|
DIRECT_OPERATE
operate the control via a DirectOperate request
|
DIRECT_OPERATE_NO_ACK
operate the control via a DirectOperateNoAck request
|
SELECT_BEFORE_OPERATE
control point was properly selected before the operate request
|
Modifier and Type | Method and Description |
---|---|
static OperateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperateType SELECT_BEFORE_OPERATE
public static final OperateType DIRECT_OPERATE
public static final OperateType DIRECT_OPERATE_NO_ACK
public static OperateType[] values()
for (OperateType c : OperateType.values()) System.out.println(c);
public static OperateType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.