public static enum CatalogCreator.Kind extends java.lang.Enum<CatalogCreator.Kind>
| Enum Constant and Description |
|---|
component |
dataformat |
language |
other |
| Modifier and Type | Method and Description |
|---|---|
static CatalogCreator.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatalogCreator.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogCreator.Kind component
public static final CatalogCreator.Kind dataformat
public static final CatalogCreator.Kind language
public static final CatalogCreator.Kind other
public static CatalogCreator.Kind[] values()
for (CatalogCreator.Kind c : CatalogCreator.Kind.values()) System.out.println(c);
public static CatalogCreator.Kind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020. All rights reserved.