Enum AWTreeNode.WTNodeType
- java.lang.Object
- 
- java.lang.Enum<AWTreeNode.WTNodeType>
- 
- org.apache.sysds.runtime.compress.workload.AWTreeNode.WTNodeType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AWTreeNode.WTNodeType>
 - Enclosing class:
- AWTreeNode
 
 public static enum AWTreeNode.WTNodeType extends Enum<AWTreeNode.WTNodeType> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLoop()static AWTreeNode.WTNodeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AWTreeNode.WTNodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ROOTpublic static final AWTreeNode.WTNodeType ROOT 
 - 
FCALLpublic static final AWTreeNode.WTNodeType FCALL 
 - 
IFpublic static final AWTreeNode.WTNodeType IF 
 - 
WHILEpublic static final AWTreeNode.WTNodeType WHILE 
 - 
FORpublic static final AWTreeNode.WTNodeType FOR 
 - 
PARFORpublic static final AWTreeNode.WTNodeType PARFOR 
 - 
BASIC_BLOCKpublic static final AWTreeNode.WTNodeType BASIC_BLOCK 
 
- 
 - 
Method Detail- 
valuespublic static AWTreeNode.WTNodeType[] 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 (AWTreeNode.WTNodeType c : AWTreeNode.WTNodeType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AWTreeNode.WTNodeType 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
 
 - 
isLooppublic boolean isLoop() 
 
- 
 
-