Home | History | Annotate | Download | only in account

Lines Matching defs:accountType

39   public final String accountType;
44 private AccountTypeWithDataSet(String accountType, String dataSet) {
45 this.accountType = TextUtils.isEmpty(accountType) ? null : accountType;
49 public static AccountTypeWithDataSet get(String accountType, String dataSet) {
50 return new AccountTypeWithDataSet(accountType, dataSet);
63 args = new String[] {accountType};
66 args = new String[] {accountType, dataSet};
90 return Objects.equals(accountType, other.accountType) && Objects.equals(dataSet, other.dataSet);
95 return (accountType == null ? 0 : accountType.hashCode())
101 return "[" + accountType + "/" + dataSet + "]";