public enum SdkScalarNodeType extends Enum<SdkScalarNodeType>
| Enum Constant and Description |
|---|
BOOLEAN
{
Boolean} type {SdkScalarNode}. |
NUMBER
{
Number} type {SdkScalarNode}. |
STRING
{
String} type {SdkScalarNode}. |
| Modifier and Type | Method and Description |
|---|---|
static SdkScalarNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SdkScalarNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdkScalarNodeType NUMBER
Number} type {SdkScalarNode}.public static final SdkScalarNodeType BOOLEAN
Boolean} type {SdkScalarNode}.public static final SdkScalarNodeType STRING
String} type {SdkScalarNode}.public static SdkScalarNodeType[] values()
for (SdkScalarNodeType c : SdkScalarNodeType.values()) System.out.println(c);
public static SdkScalarNodeType 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.