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

org.jnbis.api.Jnbis Maven / Gradle / Ivy

package org.jnbis.api;

import org.jnbis.api.handler.NistHandler;
import org.jnbis.api.handler.WsqHandler;

/**
 * The starting point of the API.
 */
public final class Jnbis {
    private static final WsqHandler WSQ_HANDLER = new WsqHandler();
    private static final NistHandler NIST_HANDLER = new NistHandler();

    /**
     * No instance is needed.
     */
    private Jnbis() {
    }

    /**
     * Returns a WsqHandle.
     *
     * @return a WsqHandle, not null
     * @see WsqHandler
     */
    public static WsqHandler wsq() {
        return WSQ_HANDLER;
    }

    /**
     * Returns a NistHandler.
     *
     * @return a NistHandler, not null
     * @see NistHandler
     */
    public static NistHandler nist() {
        return NIST_HANDLER;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy