Package graphql.schema.diff
Enum Class DiffCategory
- All Implemented Interfaces:
- Serializable,- Comparable<DiffCategory>,- Constable
A classification of difference events.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe new API has added something not present in the old APIThe new API has newly deprecated somethingThe new API has removed something previously deprecated in the old APIThe new API has changed something compared to the old APIThe new API has an invalid structureThe new API is missing something compared to the old APIThe new API has become stricter for existing clients than the old API
- 
Method SummaryModifier and TypeMethodDescriptionstatic DiffCategoryReturns the enum constant of this class with the specified name.static DiffCategory[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
MISSINGThe new API is missing something compared to the old API
- 
STRICTERThe new API has become stricter for existing clients than the old API
- 
INVALIDThe new API has an invalid structure
- 
ADDITIONThe new API has added something not present in the old API
- 
DIFFERENTThe new API has changed something compared to the old API
- 
DEPRECATION_ADDEDThe new API has newly deprecated something
- 
DEPRECATION_REMOVEDThe new API has removed something previously deprecated in the old API
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-