- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {Charset c =
String charsetName;Charset.forName(charsetName)
Charset.defaultCharset()
ContentType contentType;contentType.getCharset()
- Smart code suggestions by Codota
}
/** * Get the {@link FingerPrintAuthHelper} * * @param context instance of the caller. * @param callback {@link FingerPrintAuthCallback} to get notify whenever authentication success/fails. * @return {@link FingerPrintAuthHelper} */ @SuppressWarnings("ConstantConditions") public static FingerPrintAuthHelper getHelper(@NonNull Context context, @NonNull FingerPrintAuthCallback callback) { if (context == null) { throw new IllegalArgumentException("Context cannot be null."); } else if (callback == null) { throw new IllegalArgumentException("FingerPrintAuthCallback cannot be null."); } return new FingerPrintAuthHelper(context, callback); }