public enum MS_Param_F extends Enum<MS_Param_F>
| Enum Constant and Description |
|---|
MS_AcceptAnyParam_F
The value of this constant is 2
|
MS_Param_F_Off
The value of this constant is 0
|
MS_Param_F_On
The value of this constant is 1
|
| Modifier and Type | Method and Description |
|---|---|
static MS_Param_F |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_Param_F[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_Param_F MS_Param_F_Off
The value of this constant is 0
public static final MS_Param_F MS_Param_F_On
The value of this constant is 1
public static final MS_Param_F MS_AcceptAnyParam_F
The value of this constant is 2
public static MS_Param_F[] values()
for (MS_Param_F c : MS_Param_F.values()) System.out.println(c);
public static MS_Param_F 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 © 2017. All rights reserved.