public static enum FeatureError.Cause extends java.lang.Enum<FeatureError.Cause>
Enum Constant and Description |
---|
invalidConfiguration
The feature failed because it is mis-configured and cannot recover.
|
invalidSessionState
The feature failed because values in session state required by the feature are not set.
|
invalidSubscriber
The feature failed because it cannot run for the subscriber of the current session.
|
missingFeature
The feature failed because a feature of that name did not exist
|
timedOut
The feature timed out during execution
|
uncheckedException
The feature failed because and unchecked unchecked exception was thrown by the feature.
|
unclassified
The feature failed for an unclassified reason.
|
unsupportedProtocol
The feature failed because it has been run on a protocol it does not support.
|
unsupportedTriggerEvent
The Feature failed because it cannot process the trigger object/event it received.
|
Modifier and Type | Method and Description |
---|---|
static FeatureError.Cause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureError.Cause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureError.Cause invalidConfiguration
public static final FeatureError.Cause invalidSessionState
public static final FeatureError.Cause invalidSubscriber
public static final FeatureError.Cause timedOut
public static final FeatureError.Cause unsupportedTriggerEvent
public static final FeatureError.Cause unsupportedProtocol
public static final FeatureError.Cause unclassified
public static final FeatureError.Cause uncheckedException
public static final FeatureError.Cause missingFeature
public static FeatureError.Cause[] values()
for (FeatureError.Cause c : FeatureError.Cause.values()) System.out.println(c);
public static FeatureError.Cause 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 nullCopyright © OpenCloud. All Rights Reserved.