package com.alibaba.tamper.performace; import java.math.BigDecimal; import java.math.BigInteger; /** * @author jianghang 2011-6-9 下午11:23:17 */ public class CopyBean { private int intValue; private boolean boolValue; private float floatValue; private double doubleValue; private long longValue; private char charValue; private byte byteValue; private short shortValue; private Integer integerValue; private Boolean boolObjValue; private Float floatObjValue; private Double doubleObjValue; private Long longObjValue; private Character characterValue; private Short shortObjValue; private Byte byteObjValue; private BigInteger bigIntegerValue; private BigDecimal bigDecimalValue; private String stringValue; public int getIntValue() { return intValue; } public void setIntValue(int intValue) { this.intValue = intValue; } public float getFloatValue() { return floatValue; } public void setFloatValue(float floatValue) { this.floatValue = floatValue; } public double getDoubleValue() { return doubleValue; } public void setDoubleValue(double doubleValue) { this.doubleValue = doubleValue; } public long getLongValue() { return longValue; } public void setLongValue(long longValue) { this.longValue = longValue; } public char getCharValue() { return charValue; } public void setCharValue(char charValue) { this.charValue = charValue; } public byte getByteValue() { return byteValue; } public void setByteValue(byte byteValue) { this.byteValue = byteValue; } public short getShortValue() { return shortValue; } public void setShortValue(short shortValue) { this.shortValue = shortValue; } public Integer getIntegerValue() { return integerValue; } public void setIntegerValue(Integer integerValue) { this.integerValue = integerValue; } public Float getFloatObjValue() { return floatObjValue; } public void setFloatObjValue(Float floatObjValue) { this.floatObjValue = floatObjValue; } public Double getDoubleObjValue() { return doubleObjValue; } public void setDoubleObjValue(Double doubleObjValue) { this.doubleObjValue = doubleObjValue; } public Long getLongObjValue() { return longObjValue; } public void setLongObjValue(Long longObjValue) { this.longObjValue = longObjValue; } public Short getShortObjValue() { return shortObjValue; } public void setShortObjValue(Short shortObjValue) { this.shortObjValue = shortObjValue; } public Byte getByteObjValue() { return byteObjValue; } public void setByteObjValue(Byte byteObjValue) { this.byteObjValue = byteObjValue; } public boolean isBoolValue() { return boolValue; } public void setBoolValue(boolean boolValue) { this.boolValue = boolValue; } public Boolean getBoolObjValue() { return boolObjValue; } public void setBoolObjValue(Boolean boolObjValue) { this.boolObjValue = boolObjValue; } public BigInteger getBigIntegerValue() { return bigIntegerValue; } public void setBigIntegerValue(BigInteger bigIntegerValue) { this.bigIntegerValue = bigIntegerValue; } public BigDecimal getBigDecimalValue() { return bigDecimalValue; } public void setBigDecimalValue(BigDecimal bigDecimalValue) { this.bigDecimalValue = bigDecimalValue; } public String getStringValue() { return stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } public Character getCharacterValue() { return characterValue; } public void setCharacterValue(Character characterValue) { this.characterValue = characterValue; } }