gdv.xport.feld.Undefiniert 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) 2010 - 2012 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 28.11.2010 by Oli B. ([email protected])
*/
package gdv.xport.feld;
/**
* Dieses Unterklasse ist fuer Felder vorgesehen, die nicht definiert sind
* (bzw. vergessen wurden).
*
* @author oliver ([email protected])
* @since 0.5.0 (28.11.2010)
*/
public final class Undefiniert extends Feld {
/**
* Dies ist der einzige Konstruktor.
*
* @param length Byte-Laenge
* @param start Start-Adresse
* @deprecated durch entsprechenden Constructor mit ByteAdresse ersetzt
* (TODO: wird mit v8 entsorgt)
*/
@Deprecated
public Undefiniert(final int length, final int start) {
super(Bezeichner.of("undefiniert"), length, start, Align.LEFT);
}
/**
* Dies ist der einzige Konstruktor.
*
* @param length Byte-Laenge
* @param start Start-Adresse
* @since 7.0 (07-Jan-2024)
*/
public Undefiniert(final int length, final ByteAdresse start) {
super(Bezeichner.of("undefiniert"), length, start, Align.LEFT);
}
}