Enum SearchNodes.Output
- java.lang.Object
-
- java.lang.Enum<SearchNodes.Output>
-
- org.apache.jackrabbit.oak.segment.tool.SearchNodes.Output
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchNodes.Output>
- Enclosing class:
- SearchNodes
public static enum SearchNodes.Output extends Enum<SearchNodes.Output>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchNodes.Output
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchNodes.Output[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT
public static final SearchNodes.Output TEXT
-
JOURNAL
public static final SearchNodes.Output JOURNAL
-
-
Method Detail
-
values
public static SearchNodes.Output[] 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 (SearchNodes.Output c : SearchNodes.Output.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchNodes.Output 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
-
-