Package cdc.issues.io
Enum Class OutSettings.Hint
- All Implemented Interfaces:
Serializable,Comparable<OutSettings.Hint>,Constable
- Enclosing class:
- OutSettings
Enumeration of possible hints.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf set, Comment columns are automatically created.If set, Location columns are automatically created.If set, Meta columns are automatically created.If set, Param columns are automatically created.If set, Answers are not written with issues.If set, the Comments column/field is not written.If set, the Domain column/field is not written.If set, the Labels column/field is not written.If set, the Locations column/field is not written.If set, the Metas column/field is not written.If set, the Params column/field is not written.If set, the Project column/field is not written.If set, the Snapshot column/field is not written.If set, the user (answer) labels column/field is not written.If set, the user (answer) metas column/field is not written. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisAuto()static OutSettings.HintReturns the enum constant of this class with the specified name.static OutSettings.Hint[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_PROJECT_COL
If set, the Project column/field is not written. -
NO_SNAPSHOT_COL
If set, the Snapshot column/field is not written. -
NO_DOMAIN_COL
If set, the Domain column/field is not written. -
NO_METAS_COL
If set, the Metas column/field is not written. -
AUTO_METAS
If set, Meta columns are automatically created. -
NO_LABELS_COL
If set, the Labels column/field is not written. -
NO_PARAMS_COL
If set, the Params column/field is not written. -
AUTO_PARAMS
If set, Param columns are automatically created. -
NO_ANSWERS
If set, Answers are not written with issues. -
NO_LOCATIONS_COL
If set, the Locations column/field is not written. -
AUTO_LOCATIONS
If set, Location columns are automatically created. -
NO_COMMENTS_COL
If set, the Comments column/field is not written. -
AUTO_COMMENTS
If set, Comment columns are automatically created. -
NO_USER_METAS_COL
If set, the user (answer) metas column/field is not written. -
NO_USER_LABELS_COL
If set, the user (answer) labels column/field is not written.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
isAuto
public boolean isAuto()- Returns:
trueif this hint is one of the AUTO hints.
-