de.jfachwert.Fachwert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Implementierung einiger Fachwerte nach dem WAM-Ansatz
/*
* Copyright (c) 2017-2024 by Oliver Boehm
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* (c)reated 11.03.17 by oliver ([email protected])
*/
package de.jfachwert;
import java.io.Serializable;
import java.util.Map;
/**
* In diesem Interface fuer Fachwerte sind alle Eigenschaften zusammengefasst,
* die sich in Form eines Interfaces ausdruecken lassen. Fachwerte sind:
*
* - unveraenderlich (Immutable),
* - serialisierbar,
* - ...
*
*
* Mit v4 wurde dieses Interface anfangs ebenfalls nach Kotlin ueberfuehrt.
* Allerdings hat Kotlin bei Interfaces mit Default-Implementierung noch
* Kompatibiltaetsprobleme (KT-4779).
* Daher wurde die urspruengliche Implementierung wieder restauriert und die
* Kotlin-Variante nach KFachwert verschoben
*
*
* @author oliver
*/
public interface Fachwert extends Serializable {
/**
* Liefert die einzelnen Attribute eines Fachwertes als Map.
*
* @return Attribute als Map
*/
default Map toMap() {
throw new UnsupportedOperationException("not yet implemented");
}
/**
* Normalerweise liefert diese Methode 'true' zurueck, da es nicht moeglich
* ist, ungueltige Fachwerte zu erstellen. Allerdings kann man auch den
* Validator gegen den {@link de.jfachwert.pruefung.NullValidator}
* austauschen. In diesem Fall sollte diese Methode 'false' zurueck
* liefern, wenn der Fachcwert nicht gueltig ist.
*
* @return normalerweise true
*/
default boolean isValid() {
return true;
}
}