Enum ParForProgramBlock.PTaskPartitioner
- java.lang.Object
- 
- java.lang.Enum<ParForProgramBlock.PTaskPartitioner>
- 
- org.apache.sysds.runtime.controlprogram.ParForProgramBlock.PTaskPartitioner
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ParForProgramBlock.PTaskPartitioner>
 - Enclosing class:
- ParForProgramBlock
 
 public static enum ParForProgramBlock.PTaskPartitioner extends Enum<ParForProgramBlock.PTaskPartitioner> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FACTORINGFACTORING_CMAXFACTORING_CMINFIXEDNAIVESTATICUNSPECIFIED
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ParForProgramBlock.PTaskPartitionervalueOf(String name)Returns the enum constant of this type with the specified name.static ParForProgramBlock.PTaskPartitioner[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
FIXEDpublic static final ParForProgramBlock.PTaskPartitioner FIXED 
 - 
NAIVEpublic static final ParForProgramBlock.PTaskPartitioner NAIVE 
 - 
STATICpublic static final ParForProgramBlock.PTaskPartitioner STATIC 
 - 
FACTORINGpublic static final ParForProgramBlock.PTaskPartitioner FACTORING 
 - 
FACTORING_CMINpublic static final ParForProgramBlock.PTaskPartitioner FACTORING_CMIN 
 - 
FACTORING_CMAXpublic static final ParForProgramBlock.PTaskPartitioner FACTORING_CMAX 
 - 
UNSPECIFIEDpublic static final ParForProgramBlock.PTaskPartitioner UNSPECIFIED 
 
- 
 - 
Method Detail- 
valuespublic static ParForProgramBlock.PTaskPartitioner[] 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 (ParForProgramBlock.PTaskPartitioner c : ParForProgramBlock.PTaskPartitioner.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ParForProgramBlock.PTaskPartitioner 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
 
 
- 
 
-