de.schegge.leitweg.GrobAdressierung Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leitweg-id Show documentation
Show all versions of leitweg-id Show documentation
A Java Leitweg-ID implementation.
package de.schegge.leitweg;
import java.util.Optional;
public interface GrobAdressierung {
default Optional asLandesAdressierung() {
return Optional.empty();
}
default Optional asBundesAdressierung() {
return Optional.empty();
}
}