blob: fa4d5b6aa61e5bc46319cd05d0abd90d1ab45dd7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.gis.dbf;
import java.util.ArrayList;
import java.util.List;
public class DbfHeader
{
short version;
int dateYear;
int dateMonth;
int dateDay;
int records;
int headerSize;
int recordSize;
byte incompleteTransactionFlag;
byte encryptionFlag;
byte prodMdxFlag;
byte driverId;
String driveName;
List<DbfFieldDef> fieldDefinitions = new ArrayList<DbfFieldDef>();
public short getVersion() {
return version;
}
public int getDateYear() {
return dateYear;
}
public int getDateMonth() {
return dateMonth;
}
public int getDateDay() {
return dateDay;
}
public int getRecords() {
return records;
}
public int getHeaderSize() {
return headerSize;
}
public int getRecordSize() {
return recordSize;
}
public byte getIncompleteTransactionFlag() {
return incompleteTransactionFlag;
}
public byte getEncryptionFlag() {
return encryptionFlag;
}
public byte getProdMdxFlag() {
return prodMdxFlag;
}
public byte getDriverId() {
return driverId;
}
public String getDriveName() {
return driveName;
}
public List<DbfFieldDef> getFieldDefinitions() {
return fieldDefinitions;
}
@Override
public String toString() {
final int maxLen = 20;
return "DbfHeader [version="
+ version
+ ", dateYear="
+ dateYear
+ ", dateMonth="
+ dateMonth
+ ", dateDay="
+ dateDay
+ ", records="
+ records
+ ", headerSize="
+ headerSize
+ ", recordSize="
+ recordSize
+ ", incompleteTransactionFlag="
+ incompleteTransactionFlag
+ ", encryptionFlag="
+ encryptionFlag
+ ", prodMdxFlag="
+ prodMdxFlag
+ ", driverId="
+ driverId
+ ", driveName="
+ driveName
+ ", fieldDefinitions="
+ (fieldDefinitions != null ? fieldDefinitions.subList(0,
Math.min(fieldDefinitions.size(), maxLen)) : null)
+ "]";
}
}