Class ExecutionDataProfile
- java.lang.Object
-
- org.apache.hop.metadata.api.HopMetadataBase
-
- org.apache.hop.execution.profiling.ExecutionDataProfile
-
- All Implemented Interfaces:
Cloneable,IHopMetadata
public class ExecutionDataProfile extends HopMetadataBase implements IHopMetadata, Cloneable
This data profile makes it easy to specify what kind of information you want to capture about the output of a transform during its execution.
-
-
Field Summary
Fields Modifier and Type Field Description static StringGUI_PLUGIN_ELEMENT_PARENT_ID-
Fields inherited from class org.apache.hop.metadata.api.HopMetadataBase
metadataProviderName, name
-
-
Constructor Summary
Constructors Constructor Description ExecutionDataProfile()ExecutionDataProfile(String name)ExecutionDataProfile(String name, String description, List<IExecutionDataSampler> samplers)ExecutionDataProfile(ExecutionDataProfile profile)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ExecutionDataProfileclone()StringgetDescription()Gets descriptionList<IExecutionDataSampler>getSamplers()Gets samplersvoidsetDescription(String description)Sets descriptionvoidsetSamplers(List<IExecutionDataSampler> samplers)Sets samplers-
Methods inherited from class org.apache.hop.metadata.api.HopMetadataBase
equals, getMetadataProviderName, getName, hashCode, setMetadataProviderName, setName
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.hop.metadata.api.IHopMetadata
getMetadataProviderName, getName, setMetadataProviderName, setName
-
-
-
-
Field Detail
-
GUI_PLUGIN_ELEMENT_PARENT_ID
public static final String GUI_PLUGIN_ELEMENT_PARENT_ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ExecutionDataProfile
public ExecutionDataProfile()
-
ExecutionDataProfile
public ExecutionDataProfile(String name)
-
ExecutionDataProfile
public ExecutionDataProfile(String name, String description, List<IExecutionDataSampler> samplers)
-
ExecutionDataProfile
public ExecutionDataProfile(ExecutionDataProfile profile)
-
-
Method Detail
-
clone
protected ExecutionDataProfile clone()
-
getDescription
public String getDescription()
Gets description- Returns:
- value of description
-
setDescription
public void setDescription(String description)
Sets description- Parameters:
description- value of description
-
getSamplers
public List<IExecutionDataSampler> getSamplers()
Gets samplers- Returns:
- value of samplers
-
setSamplers
public void setSamplers(List<IExecutionDataSampler> samplers)
Sets samplers- Parameters:
samplers- value of samplers
-
-