oracle.dmt.odm
Class PairCombinationsOption
java.lang.Object
|
+--oracle.dmt.odm.Enum
|
+--oracle.dmt.odm.PairCombinationsOption
- All Implemented Interfaces:
- java.io.Serializable
- public class PairCombinationsOption
- extends Enum
The enumeration class PairCombinationsOption specifies the combinations of inputs to be used by ModelSeeker. Given two arrays of inputs, it says whether to use them as cross product or as matched pairs (index based) of inputs. The semantics of the value are as follows:
- crossProduct -
- parallelPairs -
- See Also:
- Serialized Form
Method Summary |
static PairCombinationsOption |
getInstance(int id)
Returns PairCombinationsOption enumeration object corresponding to the specified ID. |
static PairCombinationsOption |
getInstance(java.lang.String name)
Returns PairCombinationsOption enumeration object corresponding to the specified name. |
static PairCombinationsOption[] |
list()
Returns the list of all PairCombinationsOption enumerations defined. |
static java.lang.String[] |
listNames()
Returns the list of names of all PairCombinationsOption enumerations defined. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
crossProduct
public static final PairCombinationsOption crossProduct
parallelPairs
public static final PairCombinationsOption parallelPairs
listNames
public static java.lang.String[] listNames()
- Returns the list of names of all
PairCombinationsOption
enumerations defined.
-
- Returns:
- array of names for the
PairCombinationsOption
enumeration
list
public static PairCombinationsOption[] list()
- Returns the list of all
PairCombinationsOption
enumerations defined.
-
- Returns:
- array of enumeration values for the
PairCombinationsOption
enumeration
getInstance
public static PairCombinationsOption getInstance(java.lang.String name)
- Returns
PairCombinationsOption
enumeration object corresponding to the specified name.
-
- Parameters:
name
- model of pair combination
- Returns:
- instance of the
PairCombinationsOption
enumeration object corresponding to the given name
, null if there is no enumeration for this name.
getInstance
public static PairCombinationsOption getInstance(int id)
- Returns
PairCombinationsOption
enumeration object corresponding to the specified ID.
-
- Parameters:
id
- (0, 1)
- Returns:
- instance of the
PairCombinationsOption
enumeration object corresponding to the given id
, null if there is no enumeration for id.