Enum Dialect

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Dialect>

    public enum Dialect
    extends java.lang.Enum<Dialect>
    • Enum Constant Detail

      • OSS

        public static final Dialect OSS
      • W3C

        public static final Dialect W3C
    • Method Detail

      • values

        public static Dialect[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Dialect c : Dialect.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Dialect valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getCommandCodec

        public abstract CommandCodec<org.openqa.selenium.remote.http.HttpRequest> getCommandCodec()
      • getResponseCodec

        public abstract ResponseCodec<org.openqa.selenium.remote.http.HttpResponse> getResponseCodec()
      • getEncodedElementKey

        public abstract java.lang.String getEncodedElementKey()
      • getShadowRootElementKey

        public abstract java.lang.String getShadowRootElementKey()