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

io.vrap.rmf.base.client.Accessor Maven / Gradle / Ivy

There is a newer version: 17.17.0
Show newest version

package io.vrap.rmf.base.client;

/**
 * abstract class for accessor implementations
 * @param  the underlying value type
 */
public abstract class Accessor {
    protected final T value;

    /**
     * accessor constructor
     * @param value to be accessed
     */
    public Accessor(final T value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy