Enum Class LogEvent

java.lang.Object
java.lang.Enum<LogEvent>
org.maplibre.nativejni.log.LogEvent
All Implemented Interfaces:
Serializable, Comparable<LogEvent>, Constable

public enum LogEvent extends Enum<LogEvent>
Category for a Maplibre Native log record.
  • Enum Constant Details

    • GENERAL

      public static final LogEvent GENERAL
    • SETUP

      public static final LogEvent SETUP
    • SHADER

      public static final LogEvent SHADER
    • PARSE_STYLE

      public static final LogEvent PARSE_STYLE
    • PARSE_TILE

      public static final LogEvent PARSE_TILE
    • RENDER

      public static final LogEvent RENDER
    • STYLE

      public static final LogEvent STYLE
    • DATABASE

      public static final LogEvent DATABASE
    • HTTP_REQUEST

      public static final LogEvent HTTP_REQUEST
    • SPRITE

      public static final LogEvent SPRITE
    • IMAGE

      public static final LogEvent IMAGE
    • OPENGL

      public static final LogEvent OPENGL
    • JNI

      public static final LogEvent JNI
    • ANDROID

      public static final LogEvent ANDROID
    • CRASH

      public static final LogEvent CRASH
    • GLYPH

      public static final LogEvent GLYPH
    • TIMING

      public static final LogEvent TIMING
    • UNKNOWN

      public static final LogEvent UNKNOWN
  • Method Details

    • values

      public static LogEvent[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LogEvent valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • nativeValue

      public int nativeValue()
    • fromNative

      public static LogEvent fromNative(int nativeValue)