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

org.swrlapi.factory.DefaultSQWRLObjectPropertyExpressionResultValue Maven / Gradle / Ivy

The newest version!
package org.swrlapi.factory;

import org.checkerframework.checker.nullness.qual.NonNull;
import org.swrlapi.sqwrl.exceptions.SQWRLException;
import org.swrlapi.sqwrl.values.SQWRLObjectPropertyExpressionResultValue;

class DefaultSQWRLObjectPropertyExpressionResultValue extends DefaultSQWRLExpressionResultValue
  implements SQWRLObjectPropertyExpressionResultValue
{
  public DefaultSQWRLObjectPropertyExpressionResultValue(@NonNull String rendering)
  {
    super(rendering);
  }

  @Override public boolean isObjectPropertyExpression() { return true; }

  @NonNull @Override public SQWRLObjectPropertyExpressionResultValue asObjectPropertyExpressionResult()
    throws SQWRLException
  {
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy