Enum IFeedback.Type
- java.lang.Object
-
- java.lang.Enum<IFeedback.Type>
-
- com.mendix.systemwideinterfaces.core.IFeedback.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IFeedback.Type>
- Enclosing interface:
- IFeedback
public static enum IFeedback.Type extends java.lang.Enum<IFeedback.Type>
Defines the type of this feedback message.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSE
DOWNLOAD_FILE
LOGOUT
NOT_SET
OPEN_FORM
PUSH_TO_CLIENT
REFRESH_CLASS
REFRESH_OBJECT
REFRESH_OBJECT_LIST
SHOW_LOGIN
SHOW_NAVIGATOR
TEXT_MESSAGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IFeedback.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IFeedback.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOWNLOAD_FILE
public static final IFeedback.Type DOWNLOAD_FILE
-
TEXT_MESSAGE
public static final IFeedback.Type TEXT_MESSAGE
-
REFRESH_OBJECT
public static final IFeedback.Type REFRESH_OBJECT
-
REFRESH_OBJECT_LIST
public static final IFeedback.Type REFRESH_OBJECT_LIST
-
REFRESH_CLASS
public static final IFeedback.Type REFRESH_CLASS
-
OPEN_FORM
public static final IFeedback.Type OPEN_FORM
-
CLOSE
public static final IFeedback.Type CLOSE
-
SHOW_LOGIN
public static final IFeedback.Type SHOW_LOGIN
-
LOGOUT
public static final IFeedback.Type LOGOUT
-
SHOW_NAVIGATOR
public static final IFeedback.Type SHOW_NAVIGATOR
-
PUSH_TO_CLIENT
public static final IFeedback.Type PUSH_TO_CLIENT
-
NOT_SET
public static final IFeedback.Type NOT_SET
-
-
Method Detail
-
values
public static IFeedback.Type[] 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.Type c : IFeedback.Type.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.Type 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
-
-