Enum ParForProgramBlock.PDataPartitionFormat
- java.lang.Object
- 
- java.lang.Enum<ParForProgramBlock.PDataPartitionFormat>
- 
- org.apache.sysds.runtime.controlprogram.ParForProgramBlock.PDataPartitionFormat
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ParForProgramBlock.PDataPartitionFormat>
 - Enclosing class:
- ParForProgramBlock
 
 public static enum ParForProgramBlock.PDataPartitionFormat extends Enum<ParForProgramBlock.PDataPartitionFormat> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BLOCK_WISE_M_NCOLUMN_BLOCK_WISECOLUMN_BLOCK_WISE_NCOLUMN_WISENONEROW_BLOCK_WISEROW_BLOCK_WISE_NROW_WISE
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ParForProgramBlock.PDataPartitionFormatparsePDataPartitionFormat(String s)Note: Robust version of valueOf in order to return NONE without exception if misspelled or non-existing and for case-insensitivity.static ParForProgramBlock.PDataPartitionFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static ParForProgramBlock.PDataPartitionFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final ParForProgramBlock.PDataPartitionFormat NONE 
 - 
ROW_WISEpublic static final ParForProgramBlock.PDataPartitionFormat ROW_WISE 
 - 
ROW_BLOCK_WISEpublic static final ParForProgramBlock.PDataPartitionFormat ROW_BLOCK_WISE 
 - 
ROW_BLOCK_WISE_Npublic static final ParForProgramBlock.PDataPartitionFormat ROW_BLOCK_WISE_N 
 - 
COLUMN_WISEpublic static final ParForProgramBlock.PDataPartitionFormat COLUMN_WISE 
 - 
COLUMN_BLOCK_WISEpublic static final ParForProgramBlock.PDataPartitionFormat COLUMN_BLOCK_WISE 
 - 
COLUMN_BLOCK_WISE_Npublic static final ParForProgramBlock.PDataPartitionFormat COLUMN_BLOCK_WISE_N 
 - 
BLOCK_WISE_M_Npublic static final ParForProgramBlock.PDataPartitionFormat BLOCK_WISE_M_N 
 
- 
 - 
Method Detail- 
valuespublic static ParForProgramBlock.PDataPartitionFormat[] 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.PDataPartitionFormat c : ParForProgramBlock.PDataPartitionFormat.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ParForProgramBlock.PDataPartitionFormat 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
 
 - 
parsePDataPartitionFormatpublic static ParForProgramBlock.PDataPartitionFormat parsePDataPartitionFormat(String s) Note: Robust version of valueOf in order to return NONE without exception if misspelled or non-existing and for case-insensitivity.- Parameters:
- s- data partition format as string
- Returns:
- data partition format
 
 
- 
 
-