Enum UiModel.OutputDataKey
- java.lang.Object
-
- java.lang.Enum<UiModel.OutputDataKey>
-
- org.opennms.features.vaadin.jmxconfiggenerator.data.UiModel.OutputDataKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UiModel.OutputDataKey>
- Enclosing class:
- UiModel
public static enum UiModel.OutputDataKey extends java.lang.Enum<UiModel.OutputDataKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CollectdConfigSnippet
JmxDataCollectionConfig
SnmpGraphProperties
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescriptionFilename()
java.lang.String
getDownloadFilename()
java.lang.String
getTitle()
static UiModel.OutputDataKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UiModel.OutputDataKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JmxDataCollectionConfig
public static final UiModel.OutputDataKey JmxDataCollectionConfig
-
SnmpGraphProperties
public static final UiModel.OutputDataKey SnmpGraphProperties
-
CollectdConfigSnippet
public static final UiModel.OutputDataKey CollectdConfigSnippet
-
-
Method Detail
-
values
public static UiModel.OutputDataKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UiModel.OutputDataKey c : UiModel.OutputDataKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiModel.OutputDataKey valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getDescriptionFilename
public java.lang.String getDescriptionFilename()
-
getDownloadFilename
public java.lang.String getDownloadFilename()
-
getTitle
public java.lang.String getTitle()
-
-