Enum Exporter.ContentOption
- java.lang.Object
-
- java.lang.Enum<Exporter.ContentOption>
-
- com.atlassian.confluence.it.export.Exporter.ContentOption
-
- All Implemented Interfaces:
Exporter.ExporterFormOption
,Serializable
,Comparable<Exporter.ContentOption>
- Enclosing class:
- Exporter
public static enum Exporter.ContentOption extends Enum<Exporter.ContentOption> implements Exporter.ExporterFormOption
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setOption(net.sourceforge.jwebunit.junit.WebTester webTester)
static Exporter.ContentOption
valueOf(String name)
Returns the enum constant of this type with the specified name.static Exporter.ContentOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final Exporter.ContentOption ALL
-
VISIBLE
public static final Exporter.ContentOption VISIBLE
-
DEFAULT
public static final Exporter.ContentOption DEFAULT
-
-
Method Detail
-
values
public static Exporter.ContentOption[] 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 (Exporter.ContentOption c : Exporter.ContentOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Exporter.ContentOption 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
-
setOption
public void setOption(net.sourceforge.jwebunit.junit.WebTester webTester)
- Specified by:
setOption
in interfaceExporter.ExporterFormOption
-
-