Enum OidcKibanaLogFieldNames

    • Method Detail

      • values

        public static OidcKibanaLogFieldNames[] 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 (OidcKibanaLogFieldNames c : OidcKibanaLogFieldNames.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OidcKibanaLogFieldNames valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getLogName

        public String getLogName()
        Description copied from interface: KibanaLogField
        Get the name with which this field will appear in the log.
        Specified by:
        getLogName in interface KibanaLogField
        Returns:
        the kibana log's field name.
      • fromKey

        public static OidcKibanaLogFieldNames fromKey​(String key)
        Lookup method that does not throw an exception if the specified key is not found.
        Parameters:
        key - the key to look for
        Returns:
        the KibanaLogField with the given name, or null