Java AtomicReference getDefaultBaseUri()

Here you can find the source of getDefaultBaseUri()

Description

Get the default base uri for resolving qname URIs.

License

Apache License

Return

The default base URI.

Declaration

public static String getDefaultBaseUri() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.concurrent.atomic.AtomicReference;

public class Main {
    private static final AtomicReference<String> DEFAULT_BASE_URI = new AtomicReference<String>();

    /**//from  w w  w  . j av  a2 s  .  c  o m
     * Get the default base uri for resolving qname URIs.
     *
     * @return The default base URI.
     */
    public static String getDefaultBaseUri() {
        return DEFAULT_BASE_URI.get();
    }
}

Related

  1. addThrowable(AtomicReferenceFieldUpdater field, T instance, Throwable exception)
  2. asList(AtomicReferenceArray a)
  3. cancel(Future future, boolean mayInterruptIfRunning)
  4. cancelAll(Future[] futures, boolean mayInterruptIfRunning)
  5. expandSplineRoots(int n)
  6. getIdentityName(final String identityType, final String displayName, final String attribute, final String attribute2, final int uniqueUserID, final AtomicReference outResolvableName, final AtomicReference outDisplayableName)
  7. getSplineCoefficients(int n, float x)
  8. isTerminated(AtomicReference field)
  9. length(AtomicReferenceArray buf)