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

org.bklab.flow.dialog.timerange.ITimeRangeSupplier Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
package org.bklab.flow.dialog.timerange;

import java.time.LocalDateTime;

public interface ITimeRangeSupplier {

    String getName();

    LocalDateTime getMin();

    LocalDateTime getMax();

    default String getLabel() {
        return getName();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy