public enum ImportType extends Enum<ImportType>
Enum Constant and Description |
---|
DS
Import data source
|
MODEL
Import ddl into a default model
|
SCHEMA
Import ddl as a schema fragment
|
VDB
Import vdb
|
Modifier and Type | Method and Description |
---|---|
static ImportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportType MODEL
public static final ImportType SCHEMA
public static final ImportType VDB
public static final ImportType DS
public static ImportType[] values()
for (ImportType c : ImportType.values()) System.out.println(c);
public static ImportType 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 © 2013–2019. All rights reserved.