public enum SchemaType extends Enum<SchemaType>
Enum Constant and Description |
---|
ARRAY |
BOOLEAN |
INT
Deprecated.
|
INTEGER |
NUMBER |
OBJECT |
STRING |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static SchemaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final SchemaType INT
public static final SchemaType INTEGER
public static final SchemaType NUMBER
public static final SchemaType BOOLEAN
public static final SchemaType STRING
public static final SchemaType ARRAY
public static final SchemaType OBJECT
public static SchemaType[] values()
for (SchemaType c : SchemaType.values()) System.out.println(c);
public static SchemaType 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 nullpublic String getName()
Copyright © 2024 Eclipse. All rights reserved.