Module org.icepdf.ri.viewer
Enum MarkupAnnotationPanel.FilterAuthorColumn
- java.lang.Object
-
- java.lang.Enum<MarkupAnnotationPanel.FilterAuthorColumn>
-
- org.icepdf.ri.common.utility.annotation.markup.MarkupAnnotationPanel.FilterAuthorColumn
-
- All Implemented Interfaces:
Serializable,Comparable<MarkupAnnotationPanel.FilterAuthorColumn>
- Enclosing class:
- MarkupAnnotationPanel
public static enum MarkupAnnotationPanel.FilterAuthorColumn extends Enum<MarkupAnnotationPanel.FilterAuthorColumn>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLAUTHOR_CURRENTAUTHOR_OTHER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MarkupAnnotationPanel.FilterAuthorColumnvalueOf(String name)Returns the enum constant of this type with the specified name.static MarkupAnnotationPanel.FilterAuthorColumn[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final MarkupAnnotationPanel.FilterAuthorColumn ALL
-
AUTHOR_CURRENT
public static final MarkupAnnotationPanel.FilterAuthorColumn AUTHOR_CURRENT
-
AUTHOR_OTHER
public static final MarkupAnnotationPanel.FilterAuthorColumn AUTHOR_OTHER
-
-
Method Detail
-
values
public static MarkupAnnotationPanel.FilterAuthorColumn[] 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 (MarkupAnnotationPanel.FilterAuthorColumn c : MarkupAnnotationPanel.FilterAuthorColumn.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarkupAnnotationPanel.FilterAuthorColumn 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
-
-