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

io.github.jamsesso.jsonlogic.ast.JsonLogicString Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package io.github.jamsesso.jsonlogic.ast;

public class JsonLogicString implements JsonLogicPrimitive {
  private final String value;

  public JsonLogicString(String value) {
    this.value = value;
  }

  @Override
  public String getValue() {
    return value;
  }

  @Override
  public JsonLogicPrimitiveType getPrimitiveType() {
    return JsonLogicPrimitiveType.STRING;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy