public enum DataExportLevel extends java.lang.Enum<DataExportLevel>
| Modifier and Type | Method and Description |
|---|---|
static DataExportLevel |
fromString(java.lang.String displayName)
Returns an instance of the enum with the specified display name.
|
static DataExportLevel |
getDataExportLevel(int level)
Returns an instance of the enum with the specified level.
|
java.lang.String |
getDisplayName()
Returns the name of this enum constant, as contained in the
declaration.
|
int |
getLevel()
Returns the integer data export level of this enum constant, as
contained in the declaration.
|
java.lang.String |
toString()
Returns the display name of this enum constant, as contained in the
declaration.
|
static DataExportLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataExportLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataExportLevel ALL
public static final DataExportLevel LEVEL0
public static DataExportLevel fromString(java.lang.String displayName)
displayName - user friendly namepublic static DataExportLevel getDataExportLevel(int level)
level - data export levelpublic java.lang.String getDisplayName()
public int getLevel()
public java.lang.String toString()
toString in class java.lang.Enum<DataExportLevel>public static DataExportLevel 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 nullpublic static DataExportLevel[] values()
for (DataExportLevel c : DataExportLevel.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.