All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.boxed.json.BoxedJsString Maven / Gradle / Ivy

There is a newer version: 0.5.34
Show newest version
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