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

org.bidib.wizard.model.status.BidibStatus Maven / Gradle / Ivy

There is a newer version: 2.0.26
Show newest version
package org.bidib.wizard.model.status;

import org.bidib.jbidibc.messages.enums.BidibEnum;

public interface BidibStatus {
    /**
     * @return the type
     */
    BidibEnum getType();

    /**
     * @return the resource key
     */
    String getKey();

    /**
     * @return the values
     */
     T[] getValues();

    /**
     * @return the values that are available for macro actions
     */
    default  T[] getMacroValues() {
        return getValues();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy