Enum AggregateUnaryCPInstruction.AUType
- java.lang.Object
- 
- java.lang.Enum<AggregateUnaryCPInstruction.AUType>
- 
- org.apache.sysds.runtime.instructions.cp.AggregateUnaryCPInstruction.AUType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AggregateUnaryCPInstruction.AUType>
 - Enclosing class:
- AggregateUnaryCPInstruction
 
 public static enum AggregateUnaryCPInstruction.AUType extends Enum<AggregateUnaryCPInstruction.AUType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COUNT_DISTINCTCOUNT_DISTINCT_APPROXDEFAULTEXISTSLENGTHLINEAGENCOLNROW
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisMeta()static AggregateUnaryCPInstruction.AUTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AggregateUnaryCPInstruction.AUType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NROWpublic static final AggregateUnaryCPInstruction.AUType NROW 
 - 
NCOLpublic static final AggregateUnaryCPInstruction.AUType NCOL 
 - 
LENGTHpublic static final AggregateUnaryCPInstruction.AUType LENGTH 
 - 
EXISTSpublic static final AggregateUnaryCPInstruction.AUType EXISTS 
 - 
LINEAGEpublic static final AggregateUnaryCPInstruction.AUType LINEAGE 
 - 
COUNT_DISTINCTpublic static final AggregateUnaryCPInstruction.AUType COUNT_DISTINCT 
 - 
COUNT_DISTINCT_APPROXpublic static final AggregateUnaryCPInstruction.AUType COUNT_DISTINCT_APPROX 
 - 
DEFAULTpublic static final AggregateUnaryCPInstruction.AUType DEFAULT 
 
- 
 - 
Method Detail- 
valuespublic static AggregateUnaryCPInstruction.AUType[] 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 (AggregateUnaryCPInstruction.AUType c : AggregateUnaryCPInstruction.AUType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AggregateUnaryCPInstruction.AUType 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
 
 - 
isMetapublic boolean isMeta() 
 
- 
 
-