blob: e10e34170200a3fe40a903cbb3b568345f1d7a3b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.kernel;
/**
* FieldManager that responds to all fetch methods with the default value
* for that field; used to clear the state of managed instances.
*
* @author Abe White
*/
class ClearFieldManager
extends AbstractFieldManager {
private static final ClearFieldManager _single = new ClearFieldManager();
public static ClearFieldManager getInstance() {
return _single;
}
protected ClearFieldManager() {
}
@Override
public boolean fetchBooleanField(int field) {
return false;
}
@Override
public byte fetchByteField(int field) {
return 0;
}
@Override
public char fetchCharField(int field) {
return 0;
}
@Override
public double fetchDoubleField(int field) {
return 0D;
}
@Override
public float fetchFloatField(int field) {
return 0F;
}
@Override
public int fetchIntField(int field) {
return 0;
}
@Override
public long fetchLongField(int field) {
return 0L;
}
@Override
public Object fetchObjectField(int field) {
return null;
}
@Override
public short fetchShortField(int field) {
return 0;
}
@Override
public String fetchStringField(int field) {
return null;
}
}