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

io.deephaven.appmode.Field Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
/**
 * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
 */
package io.deephaven.appmode;

import java.util.Optional;

public interface Field {
    /**
     * A human readable name for this field. Often used to label the web-ui tab.
     */
    String name();

    /**
     * Retrieve the instance that this field references.
     */
    T value();

    /**
     * An optional description for users who want to improve exploration of an existing application state.
     */
    Optional description();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy