Enum BasicDataProfilingDataSampler.ProfilingType
- java.lang.Object
-
- java.lang.Enum<BasicDataProfilingDataSampler.ProfilingType>
-
- org.apache.hop.execution.sampler.plugins.dataprof.BasicDataProfilingDataSampler.ProfilingType
-
- All Implemented Interfaces:
Serializable,Comparable<BasicDataProfilingDataSampler.ProfilingType>
- Enclosing class:
- BasicDataProfilingDataSampler
public static enum BasicDataProfilingDataSampler.ProfilingType extends Enum<BasicDataProfilingDataSampler.ProfilingType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets descriptionstatic BasicDataProfilingDataSampler.ProfilingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BasicDataProfilingDataSampler.ProfilingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MinValue
public static final BasicDataProfilingDataSampler.ProfilingType MinValue
-
MaxValue
public static final BasicDataProfilingDataSampler.ProfilingType MaxValue
-
NrNulls
public static final BasicDataProfilingDataSampler.ProfilingType NrNulls
-
NrNonNulls
public static final BasicDataProfilingDataSampler.ProfilingType NrNonNulls
-
MinLength
public static final BasicDataProfilingDataSampler.ProfilingType MinLength
-
MaxLength
public static final BasicDataProfilingDataSampler.ProfilingType MaxLength
-
-
Method Detail
-
values
public static BasicDataProfilingDataSampler.ProfilingType[] 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 (BasicDataProfilingDataSampler.ProfilingType c : BasicDataProfilingDataSampler.ProfilingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BasicDataProfilingDataSampler.ProfilingType 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 nameNullPointerException- if the argument is null
-
getDescription
public String getDescription()
Gets description- Returns:
- value of description
-
-