Liferay 6.0.5

com.liferay.portal.kernel.bi.rules
Enum RulesLanguage

java.lang.Object
  extended by java.lang.Enum<RulesLanguage>
      extended by com.liferay.portal.kernel.bi.rules.RulesLanguage
All Implemented Interfaces:
Serializable, Comparable<RulesLanguage>

public enum RulesLanguage
extends Enum<RulesLanguage>


Enum Constant Summary
DROOLS_BRL
           
DROOLS_CHANGE_SET
           
DROOLS_DECISION_TABLE
           
DROOLS_DOMAIN_SPECIFIC
           
DROOLS_DOMAIN_SPECIFIC_RULE
           
DROOLS_PKG
           
DROOLS_RULE_FLOW
           
DROOLS_RULE_LANGUAGE
           
DROOLS_XML_LANGUAGE
           
 
Method Summary
static RulesLanguage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RulesLanguage[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DROOLS_BRL

public static final RulesLanguage DROOLS_BRL

DROOLS_CHANGE_SET

public static final RulesLanguage DROOLS_CHANGE_SET

DROOLS_DECISION_TABLE

public static final RulesLanguage DROOLS_DECISION_TABLE

DROOLS_DOMAIN_SPECIFIC

public static final RulesLanguage DROOLS_DOMAIN_SPECIFIC

DROOLS_DOMAIN_SPECIFIC_RULE

public static final RulesLanguage DROOLS_DOMAIN_SPECIFIC_RULE

DROOLS_PKG

public static final RulesLanguage DROOLS_PKG

DROOLS_RULE_FLOW

public static final RulesLanguage DROOLS_RULE_FLOW

DROOLS_RULE_LANGUAGE

public static final RulesLanguage DROOLS_RULE_LANGUAGE

DROOLS_XML_LANGUAGE

public static final RulesLanguage DROOLS_XML_LANGUAGE
Method Detail

values

public static final RulesLanguage[] 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 (RulesLanguage c : RulesLanguage.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RulesLanguage 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

Liferay 6.0.5