/app/src/main/java/company/com/course_work/model/entity/Currency.java

https://bitbucket.org/lirriel/course-work · Java · 137 lines · 109 code · 28 blank · 0 comment · 2 complexity · bde275ddc57f894661ed640a23ada76a MD5 · raw file

  1. package company.com.course_work.model.entity;
  2. import com.google.gson.annotations.Expose;
  3. import com.google.gson.annotations.SerializedName;
  4. import android.arch.persistence.room.ColumnInfo;
  5. import android.arch.persistence.room.Entity;
  6. import android.arch.persistence.room.Ignore;
  7. import android.arch.persistence.room.PrimaryKey;
  8. import android.os.Parcel;
  9. import android.os.Parcelable;
  10. import android.support.annotation.NonNull;
  11. import java.io.Serializable;
  12. @Entity
  13. public class Currency implements Serializable, Parcelable {
  14. @PrimaryKey(autoGenerate = true)
  15. private long id;
  16. @SerializedName("name")
  17. @Expose
  18. @ColumnInfo(name = "name")
  19. private String name;
  20. @SerializedName("symbol")
  21. @Expose
  22. @ColumnInfo(name = "symbol")
  23. private String symbol = "";
  24. @SerializedName("symbol")
  25. @Expose
  26. @ColumnInfo(typeAffinity = ColumnInfo.BLOB)
  27. private byte[] image;
  28. @SerializedName("fave")
  29. @Expose
  30. @ColumnInfo(name = "fave")
  31. private boolean isFavourite;
  32. @SerializedName("check")
  33. @Expose
  34. @Ignore
  35. private boolean isCheck;
  36. @Ignore
  37. public Currency(@NonNull String symbol, String name) {
  38. this.symbol = symbol;
  39. this.name = name;
  40. }
  41. public Currency() {}
  42. protected Currency(Parcel in) {
  43. id = in.readLong();
  44. name = in.readString();
  45. symbol = in.readString();
  46. image = in.createByteArray();
  47. isFavourite = in.readByte() != 0;
  48. isCheck = in.readByte() != 0;
  49. }
  50. public static final Creator<Currency> CREATOR = new Creator<Currency>() {
  51. @Override
  52. public Currency createFromParcel(Parcel in) {
  53. return new Currency(in);
  54. }
  55. @Override
  56. public Currency[] newArray(int size) {
  57. return new Currency[size];
  58. }
  59. };
  60. public String getName() {
  61. return name;
  62. }
  63. public void setName(String name) {
  64. this.name = name;
  65. }
  66. public String getSymbol() {
  67. return symbol;
  68. }
  69. public void setSymbol(String symbol) {
  70. this.symbol = symbol;
  71. }
  72. public byte[] getImage() {
  73. return image;
  74. }
  75. public void setImage(byte[] image) {
  76. this.image = image;
  77. }
  78. public boolean isFavourite() {
  79. return isFavourite;
  80. }
  81. public void setFavourite(boolean favourite) {
  82. isFavourite = favourite;
  83. }
  84. public long getId() {
  85. return id;
  86. }
  87. public void setId(long id) {
  88. this.id = id;
  89. }
  90. public boolean isCheck() {
  91. return isCheck;
  92. }
  93. public void setCheck(boolean check) {
  94. isCheck = check;
  95. }
  96. @Override
  97. public int describeContents() {
  98. return 0;
  99. }
  100. @Override
  101. public void writeToParcel(Parcel dest, int flags) {
  102. dest.writeLong(id);
  103. dest.writeString(name);
  104. dest.writeString(symbol);
  105. dest.writeByteArray(image);
  106. dest.writeByte((byte) (isFavourite ? 1 : 0));
  107. dest.writeByte((byte) (isCheck ? 1 : 0));
  108. }
  109. }