Enum OptNode.ParamType
- java.lang.Object
- 
- java.lang.Enum<OptNode.ParamType>
- 
- org.apache.sysds.runtime.controlprogram.parfor.opt.OptNode.ParamType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<OptNode.ParamType>
 - Enclosing class:
- OptNode
 
 public static enum OptNode.ParamType extends Enum<OptNode.ParamType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DATA_PARTITION_CONDDATA_PARTITION_COND_MEMDATA_PARTITION_FORMATDATA_PARTITIONERNUM_ITERATIONSOPSTRINGRECURSIVE_CALLRESULT_MERGETASK_PARTITIONERTASK_SIZE
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OptNode.ParamTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OptNode.ParamType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OPSTRINGpublic static final OptNode.ParamType OPSTRING 
 - 
TASK_PARTITIONERpublic static final OptNode.ParamType TASK_PARTITIONER 
 - 
TASK_SIZEpublic static final OptNode.ParamType TASK_SIZE 
 - 
DATA_PARTITIONERpublic static final OptNode.ParamType DATA_PARTITIONER 
 - 
DATA_PARTITION_FORMATpublic static final OptNode.ParamType DATA_PARTITION_FORMAT 
 - 
DATA_PARTITION_CONDpublic static final OptNode.ParamType DATA_PARTITION_COND 
 - 
DATA_PARTITION_COND_MEMpublic static final OptNode.ParamType DATA_PARTITION_COND_MEM 
 - 
RESULT_MERGEpublic static final OptNode.ParamType RESULT_MERGE 
 - 
NUM_ITERATIONSpublic static final OptNode.ParamType NUM_ITERATIONS 
 - 
RECURSIVE_CALLpublic static final OptNode.ParamType RECURSIVE_CALL 
 
- 
 - 
Method Detail- 
valuespublic static OptNode.ParamType[] 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 (OptNode.ParamType c : OptNode.ParamType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static OptNode.ParamType 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-