Package org.daisy.dotify.api.formatter
Enum MarkerReferenceField.MarkerSearchScope
- java.lang.Object
-
- java.lang.Enum<MarkerReferenceField.MarkerSearchScope>
-
- org.daisy.dotify.api.formatter.MarkerReferenceField.MarkerSearchScope
-
- All Implemented Interfaces:
Serializable
,Comparable<MarkerReferenceField.MarkerSearchScope>
- Enclosing class:
- MarkerReferenceField
public static enum MarkerReferenceField.MarkerSearchScope extends Enum<MarkerReferenceField.MarkerSearchScope>
Defines marker search scopes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENT
Defines document search scopePAGE
Defines page search scopePAGE_CONTENT
Defines page content search scopeSEQUENCE
Defines sequence search scopeSHEET
Defines sheet search scopeSPREAD
Defines spread search scopeSPREAD_CONTENT
Defines spread content search scopeVOLUME
Defines volume search scope
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MarkerReferenceField.MarkerSearchScope
valueOf(String name)
Returns the enum constant of this type with the specified name.static MarkerReferenceField.MarkerSearchScope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAGE_CONTENT
public static final MarkerReferenceField.MarkerSearchScope PAGE_CONTENT
Defines page content search scope
-
PAGE
public static final MarkerReferenceField.MarkerSearchScope PAGE
Defines page search scope
-
SPREAD_CONTENT
public static final MarkerReferenceField.MarkerSearchScope SPREAD_CONTENT
Defines spread content search scope
-
SPREAD
public static final MarkerReferenceField.MarkerSearchScope SPREAD
Defines spread search scope
-
SHEET
public static final MarkerReferenceField.MarkerSearchScope SHEET
Defines sheet search scope
-
SEQUENCE
public static final MarkerReferenceField.MarkerSearchScope SEQUENCE
Defines sequence search scope
-
VOLUME
public static final MarkerReferenceField.MarkerSearchScope VOLUME
Defines volume search scope
-
DOCUMENT
public static final MarkerReferenceField.MarkerSearchScope DOCUMENT
Defines document search scope
-
-
Method Detail
-
values
public static MarkerReferenceField.MarkerSearchScope[] 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 (MarkerReferenceField.MarkerSearchScope c : MarkerReferenceField.MarkerSearchScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarkerReferenceField.MarkerSearchScope 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
-
-