public static enum VdbSchema.Type extends Enum<VdbSchema.Type>
| Enum Constant and Description |
|---|
PHYSICAL
A physical schema/model type.
|
VIRTUAL
A virtual/view schema/model type.
|
| Modifier and Type | Method and Description |
|---|---|
static VdbSchema.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VdbSchema.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VdbSchema.Type PHYSICAL
public static final VdbSchema.Type VIRTUAL
public static VdbSchema.Type[] values()
for (VdbSchema.Type c : VdbSchema.Type.values()) System.out.println(c);
public static VdbSchema.Type 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.