com.cyc.kb.spi.KbFunctionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyc-core-object-api Show documentation
Show all versions of cyc-core-object-api Show documentation
The interfaces which define the Cyc Core API.
/*
* Copyright 2015 Cycorp, Inc..
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.cyc.kb.spi;
/*
* #%L
* File: KbFunctionService.java
* Project: Core API Object Specification
* %%
* Copyright (C) 2013 - 2015 Cycorp, Inc
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import com.cyc.kb.Context;
import com.cyc.kb.KbCollection;
import com.cyc.kb.KbFunction;
import com.cyc.kb.KbStatus;
import com.cyc.kb.exception.CreateException;
import com.cyc.kb.exception.KbTypeException;
/**
*
* @author nwinant
*/
public interface KbFunctionService extends RelationService {
/**
* Provides implementation for {@link com.cyc.kb.KbFunctionFactory#get(java.lang.String) }.
*
* @param nameOrId the string representation or the HLID of the #$Function-Denotational
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T get(String nameOrId) throws KbTypeException, CreateException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#findOrCreate(java.lang.String) }.
*
* @param nameOrId the string representation or the HLID of the #$Function-Denotational
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T findOrCreate(String nameOrId) throws CreateException, KbTypeException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#findOrCreate(java.lang.String, java.lang.String) }.
*
* @param nameOrId the string representation or the HLID of the #$Function-Denotational
* @param constraintColStr the string representation of the collection that this
* #$Function-Denotational will instantiate
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T findOrCreate(String nameOrId, String constraintColStr)
throws CreateException, KbTypeException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#findOrCreate(java.lang.String, java.lang.String,
* java.lang.String) }.
*
* @param nameOrId the string representation or the HLID of the term
* @param constraintColStr the string representation of the collection that this
* #$Function-Denotational will instantiate
* @param ctxStr the context in which the resulting object must be an instance of constraintCol
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T findOrCreate(String nameOrId, String constraintColStr, String ctxStr)
throws CreateException, KbTypeException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#findOrCreate(java.lang.String, com.cyc.kb.KbCollection) }.
*
* @param nameOrId the string representation or the HLID of the #$Function-Denotational
* @param constraintCol the collection that this #$Function-Denotational will instantiate
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T findOrCreate(String nameOrId, KbCollection constraintCol)
throws CreateException, KbTypeException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#findOrCreate(java.lang.String, com.cyc.kb.KbCollection,
* com.cyc.kb.Context) }.
*
* @param nameOrId the string representation or the HLID of the #$Function-Denotational
* @param constraintCol the collection that this #$Function-Denotational will instantiate
* @param ctx the context in which the resulting object must be an instance of constraintCol
*
* @return a new KbFunction
*
* @throws KbTypeException
* @throws CreateException
*/
@Override
T findOrCreate(String nameOrId, KbCollection constraintCol, Context ctx)
throws CreateException, KbTypeException;
/**
* Provides implementation for
* {@link com.cyc.kb.KbFunctionFactory#existsAsType(java.lang.String) }.
*
* @param nameOrId either the name or HL ID of an entity in the KB
* @return true
if entity exists in KB and is an instance of #$Function-Denotational
*/
@Override
boolean existsAsType(String nameOrId);
/**
* Provides implementation for {@link com.cyc.kb.KbFunctionFactory#getStatus(java.lang.String) }.
*
* @param nameOrId either the name or HL ID of an entity in the KB
* @return an enum describing the existential status of the entity in the KB
*/
@Override
KbStatus getStatus(String nameOrId);
}