Class Autocomplete.SelectOption.Hint

Object
org.mozilla.geckoview.Autocomplete.SelectOption.Hint
Enclosing class:
Autocomplete.SelectOption<T>

public static class Autocomplete.SelectOption.Hint extends Object
Hint types for selection requests.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The username is shared with another login entry.
    static final @org.mozilla.geckoview.ExperimentalGeckoViewApi int
    This synthetic entry indicates that the Gecko autocomplete system thinks that Firefox Relay features should be offered.
    static final int
    Auto-generated password.
    static final int
    Insecure context.
    static final int
    The login entry's origin matches the login form origin.
    static final int
    No hint specified.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NONE

      public static final int NONE
      No hint specified.
      See Also:
    • GENERATED

      public static final int GENERATED
      Auto-generated password. A new password-only login entry containing a secure generated password.
      See Also:
    • INSECURE_FORM

      public static final int INSECURE_FORM
      Insecure context. The form or transmission mechanics are considered insecure. This is the case when the form is served via http or submitted insecurely.
      See Also:
    • DUPLICATE_USERNAME

      public static final int DUPLICATE_USERNAME
      The username is shared with another login entry. There are multiple login entries in the options that share the same username. You may have to disambiguate the login entry, e.g., using the last date of modification and its origin.
      See Also:
    • MATCHING_ORIGIN

      public static final int MATCHING_ORIGIN
      The login entry's origin matches the login form origin. The login was saved from the same origin it is being requested for, rather than for a subdomain.
      See Also:
    • FIREFOX_RELAY

      public static final @org.mozilla.geckoview.ExperimentalGeckoViewApi int FIREFOX_RELAY
      This synthetic entry indicates that the Gecko autocomplete system thinks that Firefox Relay features should be offered. This is marked experimental since the heuristics are still implementation details and subject to change.
      See Also:
  • Constructor Details

    • Hint

      public Hint()