com.vladsch.boxed.json.BoxedJsString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxed-json Show documentation
Show all versions of boxed-json Show documentation
Mutable JSON classes with easy search and manipulation in Java
package com.vladsch.boxed.json;
import javax.json.JsonString;
public interface BoxedJsString extends BoxedJsValue, JsonString {
default @Override String getString() { return ""; }
default @Override CharSequence getChars() { return ""; }
default String getString(String defaultValue) { return isValid() ? getString() : defaultValue; }
default CharSequence getChars(CharSequence defaultValue) { return isValid() ? getChars() : defaultValue; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy