Enum ComputeAndIngest.INGEST_DESTINATION
- java.lang.Object
-
- java.lang.Enum<ComputeAndIngest.INGEST_DESTINATION>
-
- talonsoalbi_at_gmail_dot_com.ssoxmatch.actions.xmatch.ComputeAndIngest.INGEST_DESTINATION
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ComputeAndIngest.INGEST_DESTINATION>
- Enclosing class:
- ComputeAndIngest
public static enum ComputeAndIngest.INGEST_DESTINATION extends java.lang.Enum<ComputeAndIngest.INGEST_DESTINATION>
Destination option for the ingestion
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MISSION_AND_SERVICE
Will ingest in both tablesMISSION_TABLES
Will ingest in the mission cross-match tablesNO_INGEST
Will not ingestWEB_SERVICE_TABLE
Will ingest in the web service cross-match table
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComputeAndIngest.INGEST_DESTINATION
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ComputeAndIngest.INGEST_DESTINATION[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.boolean
willIngestInMissionTables()
If ingestion in mission tables is enabledboolean
willIngestInWebServiceTable()
If ingestion in service table is enabled
-
-
-
Enum Constant Detail
-
NO_INGEST
public static final ComputeAndIngest.INGEST_DESTINATION NO_INGEST
Will not ingest
-
MISSION_TABLES
public static final ComputeAndIngest.INGEST_DESTINATION MISSION_TABLES
Will ingest in the mission cross-match tables
-
WEB_SERVICE_TABLE
public static final ComputeAndIngest.INGEST_DESTINATION WEB_SERVICE_TABLE
Will ingest in the web service cross-match table
-
MISSION_AND_SERVICE
public static final ComputeAndIngest.INGEST_DESTINATION MISSION_AND_SERVICE
Will ingest in both tables
-
-
Method Detail
-
values
public static ComputeAndIngest.INGEST_DESTINATION[] 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 (ComputeAndIngest.INGEST_DESTINATION c : ComputeAndIngest.INGEST_DESTINATION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComputeAndIngest.INGEST_DESTINATION valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
willIngestInMissionTables
public boolean willIngestInMissionTables()
If ingestion in mission tables is enabled- Returns:
- True if ingestion in mission tables is enabled
-
willIngestInWebServiceTable
public boolean willIngestInWebServiceTable()
If ingestion in service table is enabled- Returns:
- True if ingestion in service table is enabled
-
-