Java XML Document Create createDocumentBuilderFactory()

Here you can find the source of createDocumentBuilderFactory()

Description

Creates a new DocumentBuilderFactory instance.

License

Apache License

Return

the new factory object

Declaration

private static DocumentBuilderFactory createDocumentBuilderFactory() 

Method Source Code

//package com.java2s;
/*//from  w  ww. jav  a 2s. c  o m
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.xml.parsers.DocumentBuilderFactory;

public class Main {
    /**
     * Creates a new {@code DocumentBuilderFactory} instance.
     *
     * @return the new factory object
     */
    private static DocumentBuilderFactory createDocumentBuilderFactory() {
        return DocumentBuilderFactory.newInstance();
    }
}

Related

  1. createDocument(String rootQName, String namespaceURI, String doctypePublicID, String doctypeSystemID)
  2. createDocument(String str)
  3. createDocument(String xml)
  4. createDocumentBuilder()
  5. createDocumentBuilder(boolean namespaces, boolean validating)
  6. createDocumentBuilderFactory(ClassLoader classLoader)
  7. createDocumentFromElement(final Element element)
  8. createDocumentFromFile(File file)
  9. createDocumentFromResult( final StreamResult result)