@Portable public enum DataSetContentType extends Enum<DataSetContentType>
| Enum Constant and Description |
|---|
CSV |
DEFINITION |
| Modifier and Type | Method and Description |
|---|---|
static DataSetContentType |
fromFileExtension(String ext) |
static DataSetContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSetContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSetContentType DEFINITION
public static final DataSetContentType CSV
public static DataSetContentType[] values()
for (DataSetContentType c : DataSetContentType.values()) System.out.println(c);
public static DataSetContentType 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 static DataSetContentType fromFileExtension(String ext)
Copyright © 2012–2021 JBoss by Red Hat. All rights reserved.