/** * Copyright CSIRO Australian e-Health Research Centre (http://aehrc.com). * All rights reserved. Use is subject to license terms and conditions. */ package au.csiro.snorocket.core.model; /** * Represents a literal in a data property expression. * * @author Alejandro Metke * */ public abstract class AbstractLiteral implements Comparable<AbstractLiteral> { }