SchemaFactory.IsSchemaLanguageSupported(String) Method

Definition

Is specified schema supported by this <code>SchemaFactory</code>?

[Android.Runtime.Register("isSchemaLanguageSupported", "(Ljava/lang/String;)Z", "GetIsSchemaLanguageSupported_Ljava_lang_String_Handler")]
public abstract bool IsSchemaLanguageSupported (string? schemaLanguage);
[<Android.Runtime.Register("isSchemaLanguageSupported", "(Ljava/lang/String;)Z", "GetIsSchemaLanguageSupported_Ljava_lang_String_Handler")>]
abstract member IsSchemaLanguageSupported : string -> bool

Parameters

schemaLanguage
String

Specifies the schema language which the returned <code>SchemaFactory</code> will understand. <code>schemaLanguage</code> must specify a <a href="#schemaLanguage">valid</a> schema language.

Returns

Boolean

<code>true</code> if <code>SchemaFactory</code> supports <code>schemaLanguage</code>, else <code>false</code>.

Attributes

Exceptions

If schemaLanguage is null.

If schemaLanguage.length() == 0 or schemaLanguage does not specify a schema language.

Remarks

Java documentation for javax.xml.validation.SchemaFactory.isSchemaLanguageSupported(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to