public static enum VdbSchema.MetadataType extends Enum<VdbSchema.MetadataType>
| Enum Constant and Description |
|---|
DDL
DDL is the default model definition metadata type.
|
| Modifier and Type | Method and Description |
|---|---|
static VdbSchema.MetadataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VdbSchema.MetadataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VdbSchema.MetadataType DDL
public static VdbSchema.MetadataType[] values()
for (VdbSchema.MetadataType c : VdbSchema.MetadataType.values()) System.out.println(c);
public static VdbSchema.MetadataType 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 © 2011-2014 JBoss, a division of Red Hat. All Rights Reserved.