StickerCategory.java 1.21 KB
package com.bitstrips.imoji.browser.models;

import android.support.annotation.Nullable;
import com.bitstrips.imoji.models.Sticker;
import java.util.List;

public class StickerCategory
{
  private final String a;
  private final List<Sticker> b;
  private final Header c;
  private final EmptyStateType d;
  
  public StickerCategory(String paramString, List<Sticker> paramList, @Nullable Header paramHeader, EmptyStateType paramEmptyStateType)
  {
    this.a = paramString;
    this.b = paramList;
    this.c = paramHeader;
    this.d = paramEmptyStateType;
  }
  
  public EmptyStateType getEmptyStateType()
  {
    return this.d;
  }
  
  public Header getHeader()
  {
    return this.c;
  }
  
  public String getName()
  {
    return this.a;
  }
  
  public List<Sticker> getStickers()
  {
    return this.b;
  }
  
  public boolean hasHeader()
  {
    return this.c != null;
  }
  
  public boolean isEmpty()
  {
    return getStickers().isEmpty();
  }
  
  public static enum EmptyStateType
  {
    private EmptyStateType() {}
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/browser/models/StickerCategory.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */