Package cdc.issues.io
Enum IssuesWriter.Settings.Hint
- java.lang.Object
-
- java.lang.Enum<IssuesWriter.Settings.Hint>
-
- cdc.issues.io.IssuesWriter.Settings.Hint
-
- All Implemented Interfaces:
Serializable,Comparable<IssuesWriter.Settings.Hint>
- Enclosing class:
- IssuesWriter.Settings
public static enum IssuesWriter.Settings.Hint extends Enum<IssuesWriter.Settings.Hint>
Enumeration of possible hints.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_ANSWERSIf set, Answers are not written.NO_DOMAINIf set, the Domain column/field is not written.NO_METASIf set, the Metas column/field is not written.NO_PROJECTIf set, the Project column/field is not written.NO_SNAPSHOTIf set, the Snapshot column/field is not written.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IssuesWriter.Settings.HintvalueOf(String name)Returns the enum constant of this type with the specified name.static IssuesWriter.Settings.Hint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_PROJECT
public static final IssuesWriter.Settings.Hint NO_PROJECT
If set, the Project column/field is not written.
-
NO_SNAPSHOT
public static final IssuesWriter.Settings.Hint NO_SNAPSHOT
If set, the Snapshot column/field is not written.
-
NO_DOMAIN
public static final IssuesWriter.Settings.Hint NO_DOMAIN
If set, the Domain column/field is not written.
-
NO_METAS
public static final IssuesWriter.Settings.Hint NO_METAS
If set, the Metas column/field is not written.
-
NO_ANSWERS
public static final IssuesWriter.Settings.Hint NO_ANSWERS
If set, Answers are not written.
-
-
Method Detail
-
values
public static IssuesWriter.Settings.Hint[] 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 (IssuesWriter.Settings.Hint c : IssuesWriter.Settings.Hint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IssuesWriter.Settings.Hint 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
-
-