Java AtomicBoolean isWriteRelativeUris()

Here you can find the source of isWriteRelativeUris()

Description

Whether to write URI enums using relative URIs.

License

Apache License

Return

Whether to write URI enums using relative URIs.

Declaration

public static boolean isWriteRelativeUris() 

Method Source Code

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

import java.util.concurrent.atomic.AtomicBoolean;

public class Main {
    private static final AtomicBoolean WRITE_RELATIVE_URIS = new AtomicBoolean(false);

    /**//from   w  ww  . j a v  a  2 s  . co  m
     * Whether to write URI enums using relative URIs.
     *
     * @return Whether to write URI enums using relative URIs.
     */
    public static boolean isWriteRelativeUris() {
        return WRITE_RELATIVE_URIS.get();
    }
}

Related

  1. getUnifiedCity(@Nullable final String sCity, @Nonnull final Locale aSortLocale)
  2. isActivated()
  3. isBoolean(Class returnType)
  4. isCaseSensitive()
  5. isComplexAddressHandlingEnabled()
  6. remove()
  7. resolveArgReferences(Object arg)
  8. sleepCheck(int timeout, AtomicBoolean flag)
  9. waitForDelayedDrainNotify(AtomicBoolean drainNotifier)