public enum JsonSchemaDereferencingMode extends Enum<JsonSchemaDereferencingMode>
| Enum Constant and Description |
|---|
CANONICAL
Canonical mode
|
INLINE
Inline mode
|
| Modifier and Type | Method and Description |
|---|---|
static JsonSchemaDereferencingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonSchemaDereferencingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonSchemaDereferencingMode CANONICAL
public static final JsonSchemaDereferencingMode INLINE
public static JsonSchemaDereferencingMode[] values()
for (JsonSchemaDereferencingMode c : JsonSchemaDereferencingMode.values()) System.out.println(c);
public static JsonSchemaDereferencingMode 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 © 2024 MuleSoft, Inc.. All rights reserved.