All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.topicus.jdbc.shaded.com.google.logging.type.LogSeverity Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/logging/type/log_severity.proto

package nl.topicus.jdbc.shaded.com.google.logging.type;

/**
 * 
 * The severity of the event described in a log entry, expressed as one of the
 * standard severity levels listed below.  For your reference, the levels are
 * assigned the listed numeric values. The effect of using numeric values other
 * than those listed is undefined.
 * You can filter for log entries by severity.  For example, the following
 * filter expression will match log entries with severities `INFO`, `NOTICE`,
 * and `WARNING`:
 *     severity > DEBUG AND severity <= WARNING
 * If you are writing log entries, you should map other severity encodings to
 * one of these standard levels. For example, you might map all of Java's FINE,
 * FINER, and FINEST levels to `LogSeverity.DEBUG`. You can preserve the
 * original severity level in the log entry payload if you wish.
 * 
* * Protobuf enum {@code google.logging.type.LogSeverity} */ public enum LogSeverity implements nl.topicus.jdbc.shaded.com.google.protobuf.ProtocolMessageEnum { /** *
   * (0) The log entry has no assigned severity level.
   * 
* * DEFAULT = 0; */ DEFAULT(0), /** *
   * (100) Debug or trace information.
   * 
* * DEBUG = 100; */ DEBUG(100), /** *
   * (200) Routine information, such as ongoing status or performance.
   * 
* * INFO = 200; */ INFO(200), /** *
   * (300) Normal but significant events, such as start up, shut down, or
   * a configuration change.
   * 
* * NOTICE = 300; */ NOTICE(300), /** *
   * (400) Warning events might cause problems.
   * 
* * WARNING = 400; */ WARNING(400), /** *
   * (500) Error events are likely to cause problems.
   * 
* * ERROR = 500; */ ERROR(500), /** *
   * (600) Critical events cause more severe problems or outages.
   * 
* * CRITICAL = 600; */ CRITICAL(600), /** *
   * (700) A person must take an action immediately.
   * 
* * ALERT = 700; */ ALERT(700), /** *
   * (800) One or more systems are unusable.
   * 
* * EMERGENCY = 800; */ EMERGENCY(800), UNRECOGNIZED(-1), ; /** *
   * (0) The log entry has no assigned severity level.
   * 
* * DEFAULT = 0; */ public static final int DEFAULT_VALUE = 0; /** *
   * (100) Debug or trace information.
   * 
* * DEBUG = 100; */ public static final int DEBUG_VALUE = 100; /** *
   * (200) Routine information, such as ongoing status or performance.
   * 
* * INFO = 200; */ public static final int INFO_VALUE = 200; /** *
   * (300) Normal but significant events, such as start up, shut down, or
   * a configuration change.
   * 
* * NOTICE = 300; */ public static final int NOTICE_VALUE = 300; /** *
   * (400) Warning events might cause problems.
   * 
* * WARNING = 400; */ public static final int WARNING_VALUE = 400; /** *
   * (500) Error events are likely to cause problems.
   * 
* * ERROR = 500; */ public static final int ERROR_VALUE = 500; /** *
   * (600) Critical events cause more severe problems or outages.
   * 
* * CRITICAL = 600; */ public static final int CRITICAL_VALUE = 600; /** *
   * (700) A person must take an action immediately.
   * 
* * ALERT = 700; */ public static final int ALERT_VALUE = 700; /** *
   * (800) One or more systems are unusable.
   * 
* * EMERGENCY = 800; */ public static final int EMERGENCY_VALUE = 800; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static LogSeverity valueOf(int value) { return forNumber(value); } public static LogSeverity forNumber(int value) { switch (value) { case 0: return DEFAULT; case 100: return DEBUG; case 200: return INFO; case 300: return NOTICE; case 400: return WARNING; case 500: return ERROR; case 600: return CRITICAL; case 700: return ALERT; case 800: return EMERGENCY; default: return null; } } public static nl.topicus.jdbc.shaded.com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final nl.topicus.jdbc.shaded.com.google.protobuf.Internal.EnumLiteMap< LogSeverity> internalValueMap = new nl.topicus.jdbc.shaded.com.google.protobuf.Internal.EnumLiteMap() { public LogSeverity findValueByNumber(int number) { return LogSeverity.forNumber(number); } }; public final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return nl.topicus.jdbc.shaded.com.google.logging.type.LogSeverityProto.getDescriptor().getEnumTypes().get(0); } private static final LogSeverity[] VALUES = values(); public static LogSeverity valueOf( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private LogSeverity(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:google.logging.type.LogSeverity) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy