Enum ApproximateMarkdownServicePlugin.PluginResult
- java.lang.Object
-
- java.lang.Enum<ApproximateMarkdownServicePlugin.PluginResult>
-
- com.composum.ai.backend.slingbase.ApproximateMarkdownServicePlugin.PluginResult
-
- All Implemented Interfaces:
Serializable
,Comparable<ApproximateMarkdownServicePlugin.PluginResult>
- Enclosing interface:
- ApproximateMarkdownServicePlugin
public static enum ApproximateMarkdownServicePlugin.PluginResult extends Enum<ApproximateMarkdownServicePlugin.PluginResult>
Result of the plugin execution.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HANDLED_ALL
The plugin handled the current resource and it's children - no need to continue.HANDLED_ATTRIBUTES
The plugin handled the attributes of the resource, but not it's children.NOT_HANDLED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApproximateMarkdownServicePlugin.PluginResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static ApproximateMarkdownServicePlugin.PluginResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_HANDLED
public static final ApproximateMarkdownServicePlugin.PluginResult NOT_HANDLED
-
HANDLED_ALL
public static final ApproximateMarkdownServicePlugin.PluginResult HANDLED_ALL
The plugin handled the current resource and it's children - no need to continue.
-
HANDLED_ATTRIBUTES
public static final ApproximateMarkdownServicePlugin.PluginResult HANDLED_ATTRIBUTES
The plugin handled the attributes of the resource, but not it's children.
-
-
Method Detail
-
values
public static ApproximateMarkdownServicePlugin.PluginResult[] 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 (ApproximateMarkdownServicePlugin.PluginResult c : ApproximateMarkdownServicePlugin.PluginResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApproximateMarkdownServicePlugin.PluginResult 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
-
-