public static enum Rule.MessageKey extends Enum<Rule.MessageKey>
Enum Constant and Description |
---|
CHILD_COUNT_ABOVE_MAX_VALUE
The localized message key for the error message used when the count of children of a specific type is higher than the
required number.
|
CHILD_COUNT_BELOW_MIN_VALUE
The localized message key for the error message used when the count of children of a specific type is lower than the
required number.
|
CHILD_OF_REQUIRED_TYPE_NOT_FOUND
The localized message key for the error message used when a child of a required type is not found.
|
DESCRIPTION
The localized message key for the description.
|
NUMBER_RULE_HAS_NO_VALUES
The localized message key for the error message used when a number rule has neither a min or max value the required
number.
|
NUMBER_RULE_NON_NUMERIC_VALUES
The localized message key for the error message used when a number rule has a min or max value that is not a number.
|
PATTERN_RULE_INVALID_NODE_NAME
The localized message key for the error message used when a node name is invalid.
|
PATTERN_RULE_INVALID_PROPERTY_VALUE
The localized message key for the error message used when a property value is invalid.
|
PROPERTY_RULE_ABSENT_CHILD_FOUND
The localized message key for the error message used when a property exists and a child exists with an absent
relationship node type.Value is * .
|
PROPERTY_RULE_ABSENT_PROPERTY_FOUND
The localized message key for the error message used when a property exists and an absent relationship property exists.
|
PROPERTY_RULE_REQUIRED_CHILD_NOT_FOUND
The localized message key for the error message used when a property exists and a child with an absent child type
relationship exists.
|
PROPERTY_RULE_REQUIRED_PROPERTY_NOT_FOUND
The localized message key for the error message used when a property exists and a required relationship property does
not exist.
|
PROPERTY_RULE_VALUE_ABOVE_MAX_VALUE
The localized message key for the error message used when a property value is above the maximum value.
|
PROPERTY_RULE_VALUE_BELOW_MIN_VALUE
The localized message key for the error message used when a property value is below the minimum value.
|
RELATIONSHIP_RULE_ABSENT_CHILD_FOUND
The localized message key for the error message used when a relationship rule has a child with a type that it should
not have.
|
RELATIONSHIP_RULE_ABSENT_PROPERTY_FOUND
The localized message key for the error message used when a relationship rule has a property that it should not have.
|
RELATIONSHIP_RULE_REQUIRED_CHILD_NOT_FOUND
The localized message key for the error message used when a relationship rule does not have a child having a required
type.
|
RELATIONSHIP_RULE_REQUIRED_PROPERTY_NOT_FOUND
The localized message key for the error message used when a relationship rule does not have a required property.
|
RELATIONSHIP_RULE_SNS_FOUND
The localized message key for the error message used when a relationship rule has found 2 children with the same name
and same type.
|
REQUIRED_PROPERTY_NOT_FOUND
The localized message key for the error message used when a required property is not found.
|
Modifier and Type | Method and Description |
---|---|
static Rule.MessageKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rule.MessageKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rule.MessageKey CHILD_COUNT_ABOVE_MAX_VALUE
public static final Rule.MessageKey CHILD_COUNT_BELOW_MIN_VALUE
public static final Rule.MessageKey CHILD_OF_REQUIRED_TYPE_NOT_FOUND
public static final Rule.MessageKey DESCRIPTION
public static final Rule.MessageKey NUMBER_RULE_HAS_NO_VALUES
public static final Rule.MessageKey NUMBER_RULE_NON_NUMERIC_VALUES
public static final Rule.MessageKey PATTERN_RULE_INVALID_NODE_NAME
public static final Rule.MessageKey PATTERN_RULE_INVALID_PROPERTY_VALUE
public static final Rule.MessageKey PROPERTY_RULE_ABSENT_CHILD_FOUND
public static final Rule.MessageKey PROPERTY_RULE_ABSENT_PROPERTY_FOUND
public static final Rule.MessageKey PROPERTY_RULE_REQUIRED_CHILD_NOT_FOUND
public static final Rule.MessageKey PROPERTY_RULE_REQUIRED_PROPERTY_NOT_FOUND
public static final Rule.MessageKey PROPERTY_RULE_VALUE_ABOVE_MAX_VALUE
public static final Rule.MessageKey PROPERTY_RULE_VALUE_BELOW_MIN_VALUE
public static final Rule.MessageKey RELATIONSHIP_RULE_ABSENT_CHILD_FOUND
public static final Rule.MessageKey RELATIONSHIP_RULE_ABSENT_PROPERTY_FOUND
public static final Rule.MessageKey RELATIONSHIP_RULE_REQUIRED_CHILD_NOT_FOUND
public static final Rule.MessageKey RELATIONSHIP_RULE_REQUIRED_PROPERTY_NOT_FOUND
public static final Rule.MessageKey RELATIONSHIP_RULE_SNS_FOUND
public static final Rule.MessageKey REQUIRED_PROPERTY_NOT_FOUND
public static Rule.MessageKey[] values()
for (Rule.MessageKey c : Rule.MessageKey.values()) System.out.println(c);
public static Rule.MessageKey valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013–2019. All rights reserved.