ilog.rules.rf.model
Enum IlrRFBodyKind
- java.lang.Object
-
- java.lang.Enum<IlrRFBodyKind>
-
- ilog.rules.rf.model.IlrRFBodyKind
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<IlrRFBodyKind>
public enum IlrRFBodyKind extends java.lang.Enum<IlrRFBodyKind>
An enum to identify the kind of body (IlrRFBody).- Since:
- JRules 7.0
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description ACTIONIdentifies an "actiov" body.GUARDIdentifier a "guard" body.SELECTIdentifies a "select" body.
-
Method Summary
Methods Modifier and Type Method and Description static IlrRFBodyKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IlrRFBodyKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECT
public static final IlrRFBodyKind SELECT
Identifies a "select" body.
-
ACTION
public static final IlrRFBodyKind ACTION
Identifies an "actiov" body.
-
GUARD
public static final IlrRFBodyKind GUARD
Identifier a "guard" body.
-
-
Method Detail
-
values
public static IlrRFBodyKind[] values()
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IlrRFBodyKind valueOf(java.lang.String name)
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
-
-