Package org.apache.sysds.common
Enum Types.CorrectionLocationType
- java.lang.Object
- 
- java.lang.Enum<Types.CorrectionLocationType>
- 
- org.apache.sysds.common.Types.CorrectionLocationType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.CorrectionLocationType>
 - Enclosing class:
- Types
 
 public static enum Types.CorrectionLocationType extends Enum<Types.CorrectionLocationType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description INVALIDLASTCOLUMNLASTFOURCOLUMNSLASTFOURROWSLASTROWLASTTWOCOLUMNSLASTTWOROWSNONE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNumRemovedRowsColumns()booleanisRows()static Types.CorrectionLocationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Types.CorrectionLocationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final Types.CorrectionLocationType NONE 
 - 
LASTROWpublic static final Types.CorrectionLocationType LASTROW 
 - 
LASTCOLUMNpublic static final Types.CorrectionLocationType LASTCOLUMN 
 - 
LASTTWOROWSpublic static final Types.CorrectionLocationType LASTTWOROWS 
 - 
LASTTWOCOLUMNSpublic static final Types.CorrectionLocationType LASTTWOCOLUMNS 
 - 
LASTFOURROWSpublic static final Types.CorrectionLocationType LASTFOURROWS 
 - 
LASTFOURCOLUMNSpublic static final Types.CorrectionLocationType LASTFOURCOLUMNS 
 - 
INVALIDpublic static final Types.CorrectionLocationType INVALID 
 
- 
 - 
Method Detail- 
valuespublic static Types.CorrectionLocationType[] 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 (Types.CorrectionLocationType c : Types.CorrectionLocationType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.CorrectionLocationType 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
 
 - 
getNumRemovedRowsColumnspublic int getNumRemovedRowsColumns() 
 - 
isRowspublic boolean isRows() 
 
- 
 
-