public enum SchemaInfo extends Enum<SchemaInfo> implements com.github.davidmoten.odata.client.SchemaInfo
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends com.github.davidmoten.odata.client.ODataType> |
getClassFromTypeWithNamespace(String name) |
static SchemaInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaInfo INSTANCE
public static SchemaInfo[] values()
for (SchemaInfo c : SchemaInfo.values()) System.out.println(c);
public static SchemaInfo 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 © 2018–2021. All rights reserved.