Enum InterpreterMessages
- java.lang.Object
-
- java.lang.Enum<InterpreterMessages>
-
- de.bsvrz.sys.funclib.bitctrl.interpreter.InterpreterMessages
-
- All Implemented Interfaces:
com.bitctrl.i18n.MessageHandler
,java.io.Serializable
,java.lang.Comparable<InterpreterMessages>
,java.lang.constant.Constable
public enum InterpreterMessages extends java.lang.Enum<InterpreterMessages> implements com.bitctrl.i18n.MessageHandler
Versorgt das Package de.bwl.rpt.ref95.common.interpreter, samt Subpackages, mit lokalisierten Meldungen.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BadHandlerNull
Keine Parameter.BadMembership
Parameter: 1) Zugehörigkeit.BadSymbol
Keine Parameter.BadTypNull
Keine Parameter.BadValueNull
Keine Parameter.BadVariableName
Parameter: 1) Variablenname.HandlerNotFound
Parameter: 1) Operator.NoBooleanValue
Keine Parameter.NoVariableWithName
Parameter: 1) Variablenname.NoVariableWithNameAndTyp
Parameter: 1) Variablenname, 2) Variablentyp.Undefined
Keine Parameter.
-
Method Summary
Modifier and Type Method Description java.util.ResourceBundle
getResourceBundle()
java.lang.String
toString()
static InterpreterMessages
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InterpreterMessages[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Undefined
public static final InterpreterMessages Undefined
Keine Parameter.
-
NoBooleanValue
public static final InterpreterMessages NoBooleanValue
Keine Parameter.
-
BadMembership
public static final InterpreterMessages BadMembership
Parameter: 1) Zugehörigkeit.
-
HandlerNotFound
public static final InterpreterMessages HandlerNotFound
Parameter: 1) Operator.
-
BadVariableName
public static final InterpreterMessages BadVariableName
Parameter: 1) Variablenname.
-
NoVariableWithNameAndTyp
public static final InterpreterMessages NoVariableWithNameAndTyp
Parameter: 1) Variablenname, 2) Variablentyp.
-
NoVariableWithName
public static final InterpreterMessages NoVariableWithName
Parameter: 1) Variablenname.
-
BadValueNull
public static final InterpreterMessages BadValueNull
Keine Parameter.
-
BadSymbol
public static final InterpreterMessages BadSymbol
Keine Parameter.
-
BadHandlerNull
public static final InterpreterMessages BadHandlerNull
Keine Parameter.
-
BadTypNull
public static final InterpreterMessages BadTypNull
Keine Parameter.
-
-
Method Detail
-
values
public static InterpreterMessages[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterpreterMessages 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
-
getResourceBundle
public java.util.ResourceBundle getResourceBundle()
- Specified by:
getResourceBundle
in interfacecom.bitctrl.i18n.MessageHandler
-
toString
public java.lang.String toString()
- Specified by:
toString
in interfacecom.bitctrl.i18n.MessageHandler
- Overrides:
toString
in classjava.lang.Enum<InterpreterMessages>
-
-