com.github.fge.jsonschema.messages
Enum ValidationConfigurationMessages

java.lang.Object
  extended by java.lang.Enum<ValidationConfigurationMessages>
      extended by com.github.fge.jsonschema.messages.ValidationConfigurationMessages
All Implemented Interfaces:
Serializable, Comparable<ValidationConfigurationMessages>

public enum ValidationConfigurationMessages
extends Enum<ValidationConfigurationMessages>

Messages used by validation configuration errors


Enum Constant Summary
MALFORMED_KEYWORD
           
NO_APPROPRIATE_CONSTRUCTOR
           
NO_CHECKER
           
NULL_ATTRIBUTE
           
NULL_DIGESTER
           
NULL_FORMAT
           
NULL_KEYWORD
           
NULL_NAME
           
NULL_SYNTAX_CHECKER
           
NULL_TYPE
           
 
Method Summary
 String toString()
           
static ValidationConfigurationMessages valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ValidationConfigurationMessages[] 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

NULL_NAME

public static final ValidationConfigurationMessages NULL_NAME

NULL_SYNTAX_CHECKER

public static final ValidationConfigurationMessages NULL_SYNTAX_CHECKER

NULL_DIGESTER

public static final ValidationConfigurationMessages NULL_DIGESTER

NULL_TYPE

public static final ValidationConfigurationMessages NULL_TYPE

NO_APPROPRIATE_CONSTRUCTOR

public static final ValidationConfigurationMessages NO_APPROPRIATE_CONSTRUCTOR

NO_CHECKER

public static final ValidationConfigurationMessages NO_CHECKER

MALFORMED_KEYWORD

public static final ValidationConfigurationMessages MALFORMED_KEYWORD

NULL_FORMAT

public static final ValidationConfigurationMessages NULL_FORMAT

NULL_ATTRIBUTE

public static final ValidationConfigurationMessages NULL_ATTRIBUTE

NULL_KEYWORD

public static final ValidationConfigurationMessages NULL_KEYWORD
Method Detail

values

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

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

valueOf

public static ValidationConfigurationMessages 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 name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<ValidationConfigurationMessages>


Copyright © 2014. All Rights Reserved.