io.deephaven.appmode.Field Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-application-mode Show documentation
Show all versions of deephaven-application-mode Show documentation
The 'application-mode' project
//
// Copyright (c) 2016-2024 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