Package org.apache.sysds.lops
Enum MMTSJ.MMTSJType
- java.lang.Object
- 
- java.lang.Enum<MMTSJ.MMTSJType>
- 
- org.apache.sysds.lops.MMTSJ.MMTSJType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MMTSJ.MMTSJType>
 - Enclosing class:
- MMTSJ
 
 public static enum MMTSJ.MMTSJType extends Enum<MMTSJ.MMTSJType> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLeft()booleanisRight()static MMTSJ.MMTSJTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MMTSJ.MMTSJType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final MMTSJ.MMTSJType NONE 
 - 
LEFTpublic static final MMTSJ.MMTSJType LEFT 
 - 
RIGHTpublic static final MMTSJ.MMTSJType RIGHT 
 
- 
 - 
Method Detail- 
valuespublic static MMTSJ.MMTSJType[] 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 (MMTSJ.MMTSJType c : MMTSJ.MMTSJType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MMTSJ.MMTSJType 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
 
 - 
isLeftpublic boolean isLeft() 
 - 
isRightpublic boolean isRight() 
 
- 
 
-