Package com.logicaldoc.report
Enum RptDesignParser.INIT_PARAM
- java.lang.Object
-
- java.lang.Enum<RptDesignParser.INIT_PARAM>
-
- com.logicaldoc.report.RptDesignParser.INIT_PARAM
-
- All Implemented Interfaces:
Serializable
,Comparable<RptDesignParser.INIT_PARAM>
- Enclosing class:
- RptDesignParser
public static enum RptDesignParser.INIT_PARAM extends Enum<RptDesignParser.INIT_PARAM>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PARAM_APPEND
PARAM_OVERWRITE
PARAM_STOP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RptDesignParser.INIT_PARAM
valueOf(String name)
Returns the enum constant of this type with the specified name.static RptDesignParser.INIT_PARAM[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAM_OVERWRITE
public static final RptDesignParser.INIT_PARAM PARAM_OVERWRITE
-
PARAM_APPEND
public static final RptDesignParser.INIT_PARAM PARAM_APPEND
-
PARAM_STOP
public static final RptDesignParser.INIT_PARAM PARAM_STOP
-
-
Method Detail
-
values
public static RptDesignParser.INIT_PARAM[] 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 (RptDesignParser.INIT_PARAM c : RptDesignParser.INIT_PARAM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RptDesignParser.INIT_PARAM 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
-
-