public enum SampleDataTypeDescriptor extends Enum<SampleDataTypeDescriptor>
| Enum Constant and Description |
|---|
SAME_OPERATION |
| Modifier and Type | Method and Description |
|---|---|
static SampleDataTypeDescriptor |
forName(String name) |
String |
getName() |
static SampleDataTypeDescriptor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SampleDataTypeDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleDataTypeDescriptor SAME_OPERATION
public static SampleDataTypeDescriptor[] values()
for (SampleDataTypeDescriptor c : SampleDataTypeDescriptor.values()) System.out.println(c);
public static SampleDataTypeDescriptor 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()
public static SampleDataTypeDescriptor forName(String name)
Copyright © 2020. All rights reserved.