public enum SchemaLanguage extends Enum<SchemaLanguage>
| Enum Constant and Description |
|---|
RELAXNG
The default http://relaxng.org/ns/structure/1.0 language
|
W3C
The default http://www.w3.org/2001/XMLSchema language
|
| Modifier and Type | Method and Description |
|---|---|
String |
getLanguageUri() |
static SchemaLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaLanguage W3C
public static final SchemaLanguage RELAXNG
public static SchemaLanguage[] values()
for (SchemaLanguage c : SchemaLanguage.values()) System.out.println(c);
public static SchemaLanguage 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 nullpublic String getLanguageUri()
Copyright © 2026 MuleSoft, Inc.. All rights reserved.