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

com.minlessika.membership.integration.Tax Maven / Gradle / Ivy

Go to download

It's a library to help developers to integration membership services to another project.

There is a newer version: 0.3.1
Show newest version
package com.minlessika.membership.integration;

import java.util.UUID;

public interface Tax {

    UUID uid();

    String name();

    String shortName();

    double value();

    NumberValueType valueType();

    TaxType type();

    Tax EMPTY = new Tax() {

        @Override
        public UUID uid() {
            return null;
        }

        @Override
        public String name() {
            return null;
        }

        @Override
        public String shortName() {
            return null;
        }

        @Override
        public double value() {
            return 0;
        }

        @Override
        public NumberValueType valueType() {
            return null;
        }

        @Override
        public TaxType type() {
            return null;
        }
    };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy