/* * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * 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://aws.amazon.com/apache2.0 * * This file 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 com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.ByteBuffer; import java.util.Calendar; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Set; public class TestClass { public boolean getBoolean() { return false; } public void setBoolean(boolean value) { } public Boolean getBoxedBoolean() { return false; } public void setBoxedBoolean(Boolean value) { } @DynamoDBNativeBoolean public boolean getNativeBoolean() { return false; } public void setNativeBoolean(boolean value) { } public String getString() { return null; } public void setString(String value) { } @DynamoDBMarshalling(marshallerClass = RandomUUIDMarshaller.class) public String getCustomString() { return null; } public void setCustomString(String s) { } public Date getDate() { return null; } public void setDate(Date d) { } public Calendar getCalendar() { return null; } public void setCalendar(Calendar c) { } public byte getByte() { return 0; } public Byte getBoxedByte() { return 0; } public void setByte(byte b) { } public void setBoxedByte(Byte b) { } public short getShort() { return 0; } public Short getBoxedShort() { return 0; } public void setShort(short s) { } public void setBoxedShort(Short s) { } public int getInt() { return 0; } public Integer getBoxedInt() { return 0; } public void setInt(int i) { } public void setBoxedInt(Integer i) { } public long getLong() { return 0; } public Long getBoxedLong() { return 0l; } public void setLong(long l) { } public void setBoxedLong(Long l) { } public BigInteger getBigInt() { return BigInteger.ZERO; } public void setBigInt(BigInteger i) { } public float getFloat() { return 0; } public Float getBoxedFloat() { return 0f; } public void setFloat(float f) { } public void setBoxedFloat(Float f) { } public double getDouble() { return 0; } public Double getBoxedDouble() { return 0d; } public void setDouble(double d) { } public void setBoxedDouble(Double d) { } public BigDecimal getBigDecimal() { return BigDecimal.ZERO; } public void setBigDecimal(BigDecimal d) { } public byte[] getByteArray() { return null; } public void setByteArray(byte[] b) { } public ByteBuffer getByteBuffer() { return null; } public void setByteBuffer(ByteBuffer b) { } public Set getBooleanSet() { return null; } public void setBooleanSet(Set s) { } public Set getStringSet() { return null; } public void setStringSet(Set s) { } public Set getDateSet() { return null; } public void setDateSet(Set d) { } public Set getCalendarSet() { return null; } public void setCalendarSet(Set c) { } public Set getByteSet() { return null; } public void setByteSet(Set s) { } public Set getShortSet() { return null; } public void setShortSet(Set s) { } public Set getIntSet() { return null; } public void setIntSet(Set s) { } public Set getLongSet() { return null; } public void setLongSet(Set s) { } public Set getBigIntegerSet() { return null; } public void setBigIntegerSet(Set s) { } public Set getFloatSet() { return null; } public void setFloatSet(Set s) { } public Set getDoubleSet() { return null; } public void setDoubleSet(Set s) { } public Set getBigDecimalSet() { return null; } public void setBigDecimalSet(Set s) { } public Set getByteArraySet() { return null; } public void setByteArraySet(Set s) { } public Set getByteBufferSet() { return null; } public void setByteBufferSet(Set s) { } public Set getObjectSet() { return null; } public void setObjectSet(Set s) { } public List getList() { return null; } public void setList(List l) { } public List> getSetList() { return null; } public void setSetList(List> l) { } public Map getMap() { return null; } public void setMap(Map m) { } public Map> getSetMap() { return null; } public void setSetMap(Map> m) { } public Map getBogusMap() { return null; } public void setBogusMap(Map m) { } public SubClass getObject() { return null; } public void setObject(SubClass c) { } public S3Link getS3Link() { return null; } public void setS3Link(S3Link link) { } }