001package org.hl7.fhir.utilities.graphql;
002
003public abstract class Value {
004  public abstract String getValue();
005
006  public boolean isValue(String v) {
007    return false;
008  }
009
010  public abstract void write(StringBuilder b, int indent) throws EGraphEngine, EGraphQLException;
011}