Package org.apache.sysds.hops.fedplanner
Enum FTypes.FType
- java.lang.Object
- 
- java.lang.Enum<FTypes.FType>
- 
- org.apache.sysds.hops.fedplanner.FTypes.FType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FTypes.FType>
 - Enclosing class:
- FTypes
 
 public static enum FTypes.FType extends Enum<FTypes.FType> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FTypes.FPartitioninggetPartType()booleanisColPartitioned()booleanisRowPartitioned()booleanisType(FTypes.FType t)static FTypes.FTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FTypes.FType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ROWpublic static final FTypes.FType ROW 
 - 
COLpublic static final FTypes.FType COL 
 - 
FULLpublic static final FTypes.FType FULL 
 - 
BROADCASTpublic static final FTypes.FType BROADCAST 
 - 
PARTpublic static final FTypes.FType PART 
 - 
OTHERpublic static final FTypes.FType OTHER 
 
- 
 - 
Method Detail- 
valuespublic static FTypes.FType[] 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 (FTypes.FType c : FTypes.FType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FTypes.FType 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
 
 - 
isRowPartitionedpublic boolean isRowPartitioned() 
 - 
isColPartitionedpublic boolean isColPartitioned() 
 - 
getPartTypepublic FTypes.FPartitioning getPartType() 
 - 
isTypepublic boolean isType(FTypes.FType t) 
 
- 
 
-