Enum LibMatrixBincell.BinaryAccessType
- java.lang.Object
- 
- java.lang.Enum<LibMatrixBincell.BinaryAccessType>
- 
- org.apache.sysds.runtime.matrix.data.LibMatrixBincell.BinaryAccessType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<LibMatrixBincell.BinaryAccessType>
 - Enclosing class:
- LibMatrixBincell
 
 public static enum LibMatrixBincell.BinaryAccessType extends Enum<LibMatrixBincell.BinaryAccessType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COL_VECTOR_MATRIXINVALIDMATRIX_COL_VECTORMATRIX_MATRIXMATRIX_ROW_VECTOROUTER_VECTOR_VECTORROW_VECTOR_MATRIX
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisMatrixVector()static LibMatrixBincell.BinaryAccessTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LibMatrixBincell.BinaryAccessType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MATRIX_MATRIXpublic static final LibMatrixBincell.BinaryAccessType MATRIX_MATRIX 
 - 
MATRIX_COL_VECTORpublic static final LibMatrixBincell.BinaryAccessType MATRIX_COL_VECTOR 
 - 
MATRIX_ROW_VECTORpublic static final LibMatrixBincell.BinaryAccessType MATRIX_ROW_VECTOR 
 - 
COL_VECTOR_MATRIXpublic static final LibMatrixBincell.BinaryAccessType COL_VECTOR_MATRIX 
 - 
ROW_VECTOR_MATRIXpublic static final LibMatrixBincell.BinaryAccessType ROW_VECTOR_MATRIX 
 - 
OUTER_VECTOR_VECTORpublic static final LibMatrixBincell.BinaryAccessType OUTER_VECTOR_VECTOR 
 - 
INVALIDpublic static final LibMatrixBincell.BinaryAccessType INVALID 
 
- 
 - 
Method Detail- 
valuespublic static LibMatrixBincell.BinaryAccessType[] 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 (LibMatrixBincell.BinaryAccessType c : LibMatrixBincell.BinaryAccessType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LibMatrixBincell.BinaryAccessType 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
 
 - 
isMatrixVectorpublic boolean isMatrixVector() 
 
- 
 
-