Enum ExternalComponentMessageType
- java.lang.Object
-
- java.lang.Enum<ExternalComponentMessageType>
-
- org.dashbuilder.displayer.external.ExternalComponentMessageType
-
- All Implemented Interfaces:
Serializable,Comparable<ExternalComponentMessageType>
public enum ExternalComponentMessageType extends Enum<ExternalComponentMessageType>
External Component Message types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURATION_OKDATASETFILTERFIX_CONFIGURATIONFUNCTION_CALLFUNCTION_RESPONSEINITREADY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalComponentMessageTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ExternalComponentMessageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FUNCTION_RESPONSE
public static final ExternalComponentMessageType FUNCTION_RESPONSE
-
DATASET
public static final ExternalComponentMessageType DATASET
-
INIT
public static final ExternalComponentMessageType INIT
-
FUNCTION_CALL
public static final ExternalComponentMessageType FUNCTION_CALL
-
FILTER
public static final ExternalComponentMessageType FILTER
-
FIX_CONFIGURATION
public static final ExternalComponentMessageType FIX_CONFIGURATION
-
CONFIGURATION_OK
public static final ExternalComponentMessageType CONFIGURATION_OK
-
READY
public static final ExternalComponentMessageType READY
-
-
Method Detail
-
values
public static ExternalComponentMessageType[] 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 (ExternalComponentMessageType c : ExternalComponentMessageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalComponentMessageType 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
-
-