blob: da9fdd6feac56c70d251b1ccfe39d5e1001a874d [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* 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 or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jcs.yajcache.core;
import java.util.Map;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.jcs.yajcache.lang.annotation.*;
/**
*
* @author Hanson Char
*/
@CopyRightApache
public class CacheEntry<V> implements Map.Entry<String,V> {
private @NonNullable final String key;
private @NonNullable V value;
/** Creates a new instance of CacheEntry */
public CacheEntry(@NonNullable String key, @NonNullable V val) {
this.key = key;
this.value = val;
}
public @NonNullable String getKey() {
return key;
}
public @NonNullable V getValue() {
return value;
}
public V setValue(@NonNullable V val) {
V ret = this.value;
this.value = val;
return ret;
}
@Override public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
@Override @NonNullable public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}