public ChangePhoneNumberCommand(String countryCode, String callingCode, String phoneNumber) { Argument.isNotNull(countryCode, "countryCode"); Argument.isNotNull(callingCode, "callingCode"); Argument.isNotNull(phoneNumber, "phoneNumber"); this.mCountryCode = countryCode; this.mCallingCode = callingCode; this.mPhoneNumber = phoneNumber; }
public MatchedPhone(Phone phone, String phoneNumberMatch) { Argument.isNotNull(phone, "phone"); Argument.isNotNull(phoneNumberMatch, "phoneNumberMatch"); this.mPhone = phone; this.mPhoneNumberMatch = phoneNumberMatch; }
public MatchedContactPhone(Contact contact, Phone phone) { Argument.isNotNull(contact, "contact"); Argument.isNotNull(phone, "phone"); this.mContact = contact; this.mPhone = phone; }
private ColumnType(String dbType) { Argument.isNotNull(dbType, "dbType"); this.mDbType = dbType; }
public RegisterDeviceCommand(String verificationCode) { Argument.isNotNull(verificationCode, "verificationCode"); this.mVerificationCode = verificationCode; }