Enum Class IOlapServiceException.Reason
java.lang.Object
java.lang.Enum<IOlapServiceException.Reason>
org.pentaho.platform.plugin.action.olap.IOlapServiceException.Reason
- All Implemented Interfaces:
Serializable
,Comparable<IOlapServiceException.Reason>
,Constable
- Enclosing class:
- IOlapServiceException
Possible causes of an exception in the IOlapService.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe operation could not be completed because of the security restrictions in effect for the user session passed as a parameter.A connection of the same name already exists and the overwrite flag was not used.An error occurred. -
Method Summary
Modifier and TypeMethodDescriptionstatic IOlapServiceException.Reason
static IOlapServiceException.Reason
Returns the enum constant of this class with the specified name.static IOlapServiceException.Reason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GENERAL
An error occurred. See the root cause for more details. -
ACCESS_DENIED
The operation could not be completed because of the security restrictions in effect for the user session passed as a parameter. -
ALREADY_EXISTS
A connection of the same name already exists and the overwrite flag was not used.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
convert
-