Package org.apache.sysds.common
Enum Types.OpOpData
- java.lang.Object
- 
- java.lang.Enum<Types.OpOpData>
- 
- org.apache.sysds.common.Types.OpOpData
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.OpOpData>
 - Enclosing class:
- Types
 
 public static enum Types.OpOpData extends Enum<Types.OpOpData> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FEDERATEDFUNCTIONOUTPUTPERSISTENTREADPERSISTENTWRITESQLREADTRANSIENTREADTRANSIENTWRITE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisPersistent()booleanisRead()booleanisTransient()booleanisWrite()StringtoString()static Types.OpOpDatavalueOf(String name)Returns the enum constant of this type with the specified name.static Types.OpOpData[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
PERSISTENTREADpublic static final Types.OpOpData PERSISTENTREAD 
 - 
PERSISTENTWRITEpublic static final Types.OpOpData PERSISTENTWRITE 
 - 
TRANSIENTREADpublic static final Types.OpOpData TRANSIENTREAD 
 - 
TRANSIENTWRITEpublic static final Types.OpOpData TRANSIENTWRITE 
 - 
FUNCTIONOUTPUTpublic static final Types.OpOpData FUNCTIONOUTPUT 
 - 
SQLREADpublic static final Types.OpOpData SQLREAD 
 - 
FEDERATEDpublic static final Types.OpOpData FEDERATED 
 
- 
 - 
Method Detail- 
valuespublic static Types.OpOpData[] 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.OpOpData c : Types.OpOpData.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.OpOpData 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
 
 - 
isTransientpublic boolean isTransient() 
 - 
isPersistentpublic boolean isPersistent() 
 - 
isWritepublic boolean isWrite() 
 - 
isReadpublic boolean isRead() 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<Types.OpOpData>
 
 
- 
 
-