Here you can find the source of isWriteRelativeUris()
public static boolean isWriteRelativeUris()
//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(); } }