Enum ParForProgramBlock.PResultMerge
- java.lang.Object
- 
- java.lang.Enum<ParForProgramBlock.PResultMerge>
- 
- org.apache.sysds.runtime.controlprogram.ParForProgramBlock.PResultMerge
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ParForProgramBlock.PResultMerge>
 - Enclosing class:
- ParForProgramBlock
 
 public static enum ParForProgramBlock.PResultMerge extends Enum<ParForProgramBlock.PResultMerge> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description LOCAL_AUTOMATICLOCAL_FILELOCAL_MEMREMOTE_SPARKUNSPECIFIED
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLocal()static ParForProgramBlock.PResultMergevalueOf(String name)Returns the enum constant of this type with the specified name.static ParForProgramBlock.PResultMerge[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LOCAL_MEMpublic static final ParForProgramBlock.PResultMerge LOCAL_MEM 
 - 
LOCAL_FILEpublic static final ParForProgramBlock.PResultMerge LOCAL_FILE 
 - 
LOCAL_AUTOMATICpublic static final ParForProgramBlock.PResultMerge LOCAL_AUTOMATIC 
 - 
REMOTE_SPARKpublic static final ParForProgramBlock.PResultMerge REMOTE_SPARK 
 - 
UNSPECIFIEDpublic static final ParForProgramBlock.PResultMerge UNSPECIFIED 
 
- 
 - 
Method Detail- 
valuespublic static ParForProgramBlock.PResultMerge[] 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 (ParForProgramBlock.PResultMerge c : ParForProgramBlock.PResultMerge.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ParForProgramBlock.PResultMerge 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
 
 - 
isLocalpublic boolean isLocal() 
 
- 
 
-