![JAR search and dependency download from the Maven repository](/logo.png)
sdmxdl.ext.ObsParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
package sdmxdl.ext;
import nbbrd.design.NotThreadSafe;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import sdmxdl.Frequency;
import sdmxdl.Key;
import java.time.LocalDateTime;
import java.util.function.UnaryOperator;
@NotThreadSafe
public interface ObsParser {
@NonNull
ObsParser clear();
@NonNull
ObsParser head(Key.@NonNull Builder seriesKey, @NonNull UnaryOperator seriesAttributes);
@NonNull
ObsParser period(@Nullable String period);
@NonNull
ObsParser value(@Nullable String value);
@NonNull
Frequency getFrequency();
@Nullable
LocalDateTime parsePeriod(@NonNull UnaryOperator obsAttributes);
@Nullable
Double parseValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy