ubiware.core
Enum IllegalParameterConfigurationException.State

java.lang.Object
  extended by java.lang.Enum<IllegalParameterConfigurationException.State>
      extended by ubiware.core.IllegalParameterConfigurationException.State
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IllegalParameterConfigurationException.State>
Enclosing class:
IllegalParameterConfigurationException

public static enum IllegalParameterConfigurationException.State
extends java.lang.Enum<IllegalParameterConfigurationException.State>

The state of the IllegalParameterConfigurationException

Author:
Michael Cochez for UBIWARE project

Enum Constant Summary
conflicting
          Over configuration : this parameter should not co-exist with another parameter.
missing
          The parameter is missing.
multivalued
          The parameter is multi-valued even tough this was expected.
notAContainer
          The parameter value is not a container even tough this was expected.
notAResource
          The value is not a proper URI for a resource (the structure is wrong)
notBooleanValue
          The value was expected to be boolean, but was not.
notInRange
          The value was of the correct type, but was not in range.
notNumericValue
          The value was expected to be numerical, but was not.
notOnBlackboard
          The referred object could not be found on the blackboard.
resourceNotFound
           
 
Method Summary
 java.lang.String toString()
           
static IllegalParameterConfigurationException.State valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IllegalParameterConfigurationException.State[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

missing

public static final IllegalParameterConfigurationException.State missing
The parameter is missing.


notBooleanValue

public static final IllegalParameterConfigurationException.State notBooleanValue
The value was expected to be boolean, but was not.


notNumericValue

public static final IllegalParameterConfigurationException.State notNumericValue
The value was expected to be numerical, but was not.


notInRange

public static final IllegalParameterConfigurationException.State notInRange
The value was of the correct type, but was not in range.


notOnBlackboard

public static final IllegalParameterConfigurationException.State notOnBlackboard
The referred object could not be found on the blackboard.


notAResource

public static final IllegalParameterConfigurationException.State notAResource
The value is not a proper URI for a resource (the structure is wrong)


conflicting

public static final IllegalParameterConfigurationException.State conflicting
Over configuration : this parameter should not co-exist with another parameter.


notAContainer

public static final IllegalParameterConfigurationException.State notAContainer
The parameter value is not a container even tough this was expected.


multivalued

public static final IllegalParameterConfigurationException.State multivalued
The parameter is multi-valued even tough this was expected.


resourceNotFound

public static final IllegalParameterConfigurationException.State resourceNotFound
Method Detail

values

public static IllegalParameterConfigurationException.State[] 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 (IllegalParameterConfigurationException.State c : IllegalParameterConfigurationException.State.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IllegalParameterConfigurationException.State 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 name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<IllegalParameterConfigurationException.State>