Enum IFeedback.TargetType
- java.lang.Object
-
- java.lang.Enum<IFeedback.TargetType>
-
- com.mendix.systemwideinterfaces.core.IFeedback.TargetType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IFeedback.TargetType>
- Enclosing interface:
- IFeedback
public static enum IFeedback.TargetType extends java.lang.Enum<IFeedback.TargetType>
Depending on the target, the handling of the instruction will be passed to core of the clientsystem or to the some specific widget.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION
COMPONENT
SYSTEM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IFeedback.TargetType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IFeedback.TargetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM
public static final IFeedback.TargetType SYSTEM
-
COMPONENT
public static final IFeedback.TargetType COMPONENT
-
APPLICATION
public static final IFeedback.TargetType APPLICATION
-
-
Method Detail
-
values
public static IFeedback.TargetType[] 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 (IFeedback.TargetType c : IFeedback.TargetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IFeedback.TargetType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-