com.mindee.parsing.common.Prediction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
The newest version!
package com.mindee.parsing.common;
/**
* Base class for all predictions.
*/
public abstract class Prediction {
/**
* Returns true
if there are no predictions values.
* Accessing prediction values when this is true
may result in a {@link NullPointerException}
*/
public abstract boolean isEmpty();
}