gdv.xport.satz.model.Satz230 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdv-xport-lib Show documentation
Show all versions of gdv-xport-lib Show documentation
gdv-xport-lib ist die Java-Bibliothek fuer den Umgang mit dem GDV-Format.
Sie erleichtert den Export und Export dieses Datenformats.
/*
* Copyright (c) 2013 by Oli B.
*
* 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 29.03.2013 by Oli B. ([email protected])
*/
package gdv.xport.satz.model;
import java.util.*;
/**
* Diese Klasse repraesentiert die Satzart 230 fuer Spartenspezifischer Teil.
* Diese Satzart kennt Sparte 10 (Leben) und Sparte 30 (Unfall Leistungsarten).
*
* Alternativ kann man auch direkt
* new SatzX(230, Feld230.values())
* verwenden.
*
*
* TODO: Wird ab v6 nach gdv-xport-deprecated verschoben.
*
*
* @author oliver ([email protected])
* @since 0.9 (29.03.2013)
* @deprecated besser {@link gdv.xport.util.SatzFactory#getSatz(SatzTyp)} verwenden
*/
@Deprecated
public class Satz230 extends SpartensatzX {
/** Mapping table for sparte to Feldxxx enumeration. */
private static final Map MAPPING = new HashMap();
static {
MAPPING.put(10, gdv.xport.satz.feld.sparte10.wagnisart9.Feld230.values());
MAPPING.put(30, gdv.xport.satz.feld.sparte30.Feld230.values());
}
/**
* Default-Konstruktor.
*/
public Satz230() {
this(UNKNOWN_SPARTE);
}
/**
* Legt ein neues Satz230-Objekt fuer die uebergebene Sparte an.
*
* @param sparte 30
*/
public Satz230(final int sparte) {
super(230, sparte);
}
/**
* Liefert die Mapping-Tabelle zu Sparte - Feldxxx zurueck.
*
* @return Mapping-Tabelle
* @see gdv.xport.satz.model.SpartensatzX#getMapping()
*/
@Override
protected Map getMapping() {
return MAPPING;
}
}