blob: f1b66786a08b9862d7a425636d6127332a1ec3e6 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.nlpcraft.model;
/**
* Result value of user-defined IDL term token predicate.
* <p>
* Read full documentation in <a target=_ href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a> section and review
* <a target=_ href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
*
* @see NCTokenPredicateContext
*/
public class NCTokenPredicateResult {
private final boolean res;
private final int tokUses;
/**
* Creates token predicate result.
*
* @param res Token predicate result.
* @param tokUses How many times a token was used to match this predicate (if {@link #getResult() result} is {@code true}).
* The more times a token was used the "stronger" the this match will be when used by intent solver.
* Must be greater than or equal to zero.
*/
public NCTokenPredicateResult(boolean res, int tokUses) {
this.res = res;
this.tokUses = tokUses;
}
/**
* Gets result of this predicate. {@code True} means that the term was matched, {@code false} otherwise.
*
* @return Predicate result.
*/
public boolean getResult() {
return res;
}
/**
* Gets how many times a token was used to match this predicate (if {@link #getResult() result} is {@code true}).
* The zero value indicates that term was matched without using {@link NCTokenPredicateContext#getToken()}.
* Values greater than zero indicate that a token was used (once or more times) during term matching. Note also
* that greater token use value means greater match weight for the given term.
*
* @return Number of times a token was used to match this term. Must be greater than or equal to zero.
*/
public int getTokenUses() {
return tokUses;
}
}