Package org.pentaho.di.ui.core.dialog
Enum BrowserEnvironmentWarningDialog.EnvironmentCase
- java.lang.Object
-
- java.lang.Enum<BrowserEnvironmentWarningDialog.EnvironmentCase>
-
- org.pentaho.di.ui.core.dialog.BrowserEnvironmentWarningDialog.EnvironmentCase
-
- All Implemented Interfaces:
Serializable
,Comparable<BrowserEnvironmentWarningDialog.EnvironmentCase>
- Enclosing class:
- BrowserEnvironmentWarningDialog
public static enum BrowserEnvironmentWarningDialog.EnvironmentCase extends Enum<BrowserEnvironmentWarningDialog.EnvironmentCase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAC_OS_X
MAC_OS_X_THIN
UBUNTU
UBUNTU_THIN
WINDOWS
WINDOWS_THIN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BrowserEnvironmentWarningDialog.EnvironmentCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static BrowserEnvironmentWarningDialog.EnvironmentCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UBUNTU
public static final BrowserEnvironmentWarningDialog.EnvironmentCase UBUNTU
-
UBUNTU_THIN
public static final BrowserEnvironmentWarningDialog.EnvironmentCase UBUNTU_THIN
-
MAC_OS_X
public static final BrowserEnvironmentWarningDialog.EnvironmentCase MAC_OS_X
-
MAC_OS_X_THIN
public static final BrowserEnvironmentWarningDialog.EnvironmentCase MAC_OS_X_THIN
-
WINDOWS
public static final BrowserEnvironmentWarningDialog.EnvironmentCase WINDOWS
-
WINDOWS_THIN
public static final BrowserEnvironmentWarningDialog.EnvironmentCase WINDOWS_THIN
-
-
Method Detail
-
values
public static BrowserEnvironmentWarningDialog.EnvironmentCase[] 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 (BrowserEnvironmentWarningDialog.EnvironmentCase c : BrowserEnvironmentWarningDialog.EnvironmentCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BrowserEnvironmentWarningDialog.EnvironmentCase valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-