Package org.kie.pmml.pmml_4_2.model
Enum ExternalBeanRef.ModelUsage
- java.lang.Object
-
- java.lang.Enum<ExternalBeanRef.ModelUsage>
-
- org.kie.pmml.pmml_4_2.model.ExternalBeanRef.ModelUsage
-
- All Implemented Interfaces:
Serializable,Comparable<ExternalBeanRef.ModelUsage>
- Enclosing class:
- ExternalBeanRef
public static enum ExternalBeanRef.ModelUsage extends Enum<ExternalBeanRef.ModelUsage>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalBeanRef.ModelUsagevalueOf(String name)Returns the enum constant of this type with the specified name.static ExternalBeanRef.ModelUsage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MINING
public static final ExternalBeanRef.ModelUsage MINING
-
OUTPUT
public static final ExternalBeanRef.ModelUsage OUTPUT
-
-
Method Detail
-
values
public static ExternalBeanRef.ModelUsage[] 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 (ExternalBeanRef.ModelUsage c : ExternalBeanRef.ModelUsage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalBeanRef.ModelUsage 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
-
-