blob: 5a49daab63baff3790a60b3531ea987941cd19da [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_181-google-v7) on Fri Oct 04 15:32:56 PDT 2019 -->
<title>LogSeverity (java API)</title>
<meta name="date" content="2019-10-04">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LogSeverity (java API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9,"i2":10,"i3":10,"i4":10,"i5":9,"i6":9,"i7":41,"i8":9,"i9":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/google/logging/type/HttpRequestProto.html" title="class in com.google.logging.type"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/google/logging/type/LogSeverityProto.html" title="class in com.google.logging.type"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/google/logging/type/LogSeverity.html" target="_top">Frames</a></li>
<li><a href="LogSeverity.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.google.logging.type</div>
<h2 title="Enum LogSeverity" class="title">Enum LogSeverity</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&gt;</li>
<li>
<ul class="inheritance">
<li>com.google.logging.type.LogSeverity</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Internal.EnumLite.html?is-external=true" title="class or interface in com.google.protobuf">Internal.EnumLite</a>, <a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true" title="class or interface in com.google.protobuf">ProtocolMessageEnum</a>, java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&gt;</dd>
</dl>
<hr>
<br>
<pre>public enum <span class="typeNameLabel">LogSeverity</span>
extends java.lang.Enum&lt;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&gt;
implements <a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true" title="class or interface in com.google.protobuf">ProtocolMessageEnum</a></pre>
<div class="block"><pre>
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 &gt; DEBUG AND severity &lt;= 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.
</pre>
Protobuf enum <code>google.logging.type.LogSeverity</code></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#ALERT">ALERT</a></span></code>
<div class="block">
(700) A person must take an action immediately.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#CRITICAL">CRITICAL</a></span></code>
<div class="block">
(600) Critical events cause more severe problems or outages.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#DEBUG">DEBUG</a></span></code>
<div class="block">
(100) Debug or trace information.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#DEFAULT">DEFAULT</a></span></code>
<div class="block">
(0) The log entry has no assigned severity level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#EMERGENCY">EMERGENCY</a></span></code>
<div class="block">
(800) One or more systems are unusable.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#ERROR">ERROR</a></span></code>
<div class="block">
(500) Error events are likely to cause problems.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#INFO">INFO</a></span></code>
<div class="block">
(200) Routine information, such as ongoing status or performance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#NOTICE">NOTICE</a></span></code>
<div class="block">
(300) Normal but significant events, such as start up, shut down, or
a configuration change.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#UNRECOGNIZED">UNRECOGNIZED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#WARNING">WARNING</a></span></code>
<div class="block">
(400) Warning events might cause problems.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#ALERT_VALUE">ALERT_VALUE</a></span></code>
<div class="block">
(700) A person must take an action immediately.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#CRITICAL_VALUE">CRITICAL_VALUE</a></span></code>
<div class="block">
(600) Critical events cause more severe problems or outages.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#DEBUG_VALUE">DEBUG_VALUE</a></span></code>
<div class="block">
(100) Debug or trace information.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#DEFAULT_VALUE">DEFAULT_VALUE</a></span></code>
<div class="block">
(0) The log entry has no assigned severity level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#EMERGENCY_VALUE">EMERGENCY_VALUE</a></span></code>
<div class="block">
(800) One or more systems are unusable.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#ERROR_VALUE">ERROR_VALUE</a></span></code>
<div class="block">
(500) Error events are likely to cause problems.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#INFO_VALUE">INFO_VALUE</a></span></code>
<div class="block">
(200) Routine information, such as ongoing status or performance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#NOTICE_VALUE">NOTICE_VALUE</a></span></code>
<div class="block">
(300) Normal but significant events, such as start up, shut down, or
a configuration change.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#WARNING_VALUE">WARNING_VALUE</a></span></code>
<div class="block">
(400) Warning events might cause problems.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#forNumber-int-">forNumber</a></span>(int&nbsp;value)</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumDescriptor</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#getDescriptor--">getDescriptor</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumDescriptor</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#getDescriptorForType--">getDescriptorForType</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#getNumber--">getNumber</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumValueDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumValueDescriptor</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#getValueDescriptor--">getValueDescriptor</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static <a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Internal.EnumLiteMap.html?is-external=true" title="class or interface in com.google.protobuf">Internal.EnumLiteMap</a>&lt;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#internalGetValueMap--">internalGetValueMap</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#valueOf-com.google.protobuf.Descriptors.EnumValueDescriptor-">valueOf</a></span>(<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumValueDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumValueDescriptor</a>&nbsp;desc)</code>&nbsp;</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#valueOf-int-">valueOf</a></span>(int&nbsp;value)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
<div class="block"><span class="deprecationComment">Use <a href="../../../../com/google/logging/type/LogSeverity.html#forNumber-int-"><code>forNumber(int)</code></a> instead.</span></div>
</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/google/logging/type/LogSeverity.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="DEFAULT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> DEFAULT</pre>
<div class="block"><pre>
(0) The log entry has no assigned severity level.
</pre>
<code>DEFAULT = 0;</code></div>
</li>
</ul>
<a name="DEBUG">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEBUG</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> DEBUG</pre>
<div class="block"><pre>
(100) Debug or trace information.
</pre>
<code>DEBUG = 100;</code></div>
</li>
</ul>
<a name="INFO">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INFO</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> INFO</pre>
<div class="block"><pre>
(200) Routine information, such as ongoing status or performance.
</pre>
<code>INFO = 200;</code></div>
</li>
</ul>
<a name="NOTICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTICE</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> NOTICE</pre>
<div class="block"><pre>
(300) Normal but significant events, such as start up, shut down, or
a configuration change.
</pre>
<code>NOTICE = 300;</code></div>
</li>
</ul>
<a name="WARNING">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WARNING</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> WARNING</pre>
<div class="block"><pre>
(400) Warning events might cause problems.
</pre>
<code>WARNING = 400;</code></div>
</li>
</ul>
<a name="ERROR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> ERROR</pre>
<div class="block"><pre>
(500) Error events are likely to cause problems.
</pre>
<code>ERROR = 500;</code></div>
</li>
</ul>
<a name="CRITICAL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CRITICAL</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> CRITICAL</pre>
<div class="block"><pre>
(600) Critical events cause more severe problems or outages.
</pre>
<code>CRITICAL = 600;</code></div>
</li>
</ul>
<a name="ALERT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALERT</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> ALERT</pre>
<div class="block"><pre>
(700) A person must take an action immediately.
</pre>
<code>ALERT = 700;</code></div>
</li>
</ul>
<a name="EMERGENCY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EMERGENCY</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> EMERGENCY</pre>
<div class="block"><pre>
(800) One or more systems are unusable.
</pre>
<code>EMERGENCY = 800;</code></div>
</li>
</ul>
<a name="UNRECOGNIZED">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>UNRECOGNIZED</h4>
<pre>public static final&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a> UNRECOGNIZED</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="DEFAULT_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_VALUE</h4>
<pre>public static final&nbsp;int DEFAULT_VALUE</pre>
<div class="block"><pre>
(0) The log entry has no assigned severity level.
</pre>
<code>DEFAULT = 0;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.DEFAULT_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="DEBUG_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEBUG_VALUE</h4>
<pre>public static final&nbsp;int DEBUG_VALUE</pre>
<div class="block"><pre>
(100) Debug or trace information.
</pre>
<code>DEBUG = 100;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.DEBUG_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="INFO_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INFO_VALUE</h4>
<pre>public static final&nbsp;int INFO_VALUE</pre>
<div class="block"><pre>
(200) Routine information, such as ongoing status or performance.
</pre>
<code>INFO = 200;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.INFO_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NOTICE_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTICE_VALUE</h4>
<pre>public static final&nbsp;int NOTICE_VALUE</pre>
<div class="block"><pre>
(300) Normal but significant events, such as start up, shut down, or
a configuration change.
</pre>
<code>NOTICE = 300;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.NOTICE_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="WARNING_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WARNING_VALUE</h4>
<pre>public static final&nbsp;int WARNING_VALUE</pre>
<div class="block"><pre>
(400) Warning events might cause problems.
</pre>
<code>WARNING = 400;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.WARNING_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ERROR_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_VALUE</h4>
<pre>public static final&nbsp;int ERROR_VALUE</pre>
<div class="block"><pre>
(500) Error events are likely to cause problems.
</pre>
<code>ERROR = 500;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.ERROR_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="CRITICAL_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CRITICAL_VALUE</h4>
<pre>public static final&nbsp;int CRITICAL_VALUE</pre>
<div class="block"><pre>
(600) Critical events cause more severe problems or outages.
</pre>
<code>CRITICAL = 600;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.CRITICAL_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ALERT_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALERT_VALUE</h4>
<pre>public static final&nbsp;int ALERT_VALUE</pre>
<div class="block"><pre>
(700) A person must take an action immediately.
</pre>
<code>ALERT = 700;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.ALERT_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="EMERGENCY_VALUE">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>EMERGENCY_VALUE</h4>
<pre>public static final&nbsp;int EMERGENCY_VALUE</pre>
<div class="block"><pre>
(800) One or more systems are unusable.
</pre>
<code>EMERGENCY = 800;</code></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.google.logging.type.LogSeverity.EMERGENCY_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>[]&nbsp;values()</pre>
<div class="block">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:
<pre>
for (LogSeverity c : LogSeverity.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a name="getNumber--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNumber</h4>
<pre>public final&nbsp;int&nbsp;getNumber()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Internal.EnumLite.html?is-external=true#getNumber--" title="class or interface in com.google.protobuf">getNumber</a></code>&nbsp;in interface&nbsp;<code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Internal.EnumLite.html?is-external=true" title="class or interface in com.google.protobuf">Internal.EnumLite</a></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true#getNumber--" title="class or interface in com.google.protobuf">getNumber</a></code>&nbsp;in interface&nbsp;<code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true" title="class or interface in com.google.protobuf">ProtocolMessageEnum</a></code></dd>
</dl>
</li>
</ul>
<a name="valueOf-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>@Deprecated
public static&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&nbsp;valueOf(int&nbsp;value)</pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Use <a href="../../../../com/google/logging/type/LogSeverity.html#forNumber-int-"><code>forNumber(int)</code></a> instead.</span></div>
</li>
</ul>
<a name="forNumber-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>forNumber</h4>
<pre>public static&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&nbsp;forNumber(int&nbsp;value)</pre>
</li>
</ul>
<a name="internalGetValueMap--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>internalGetValueMap</h4>
<pre>public static&nbsp;<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Internal.EnumLiteMap.html?is-external=true" title="class or interface in com.google.protobuf">Internal.EnumLiteMap</a>&lt;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&gt;&nbsp;internalGetValueMap()</pre>
</li>
</ul>
<a name="getValueDescriptor--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValueDescriptor</h4>
<pre>public final&nbsp;<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumValueDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumValueDescriptor</a>&nbsp;getValueDescriptor()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true#getValueDescriptor--" title="class or interface in com.google.protobuf">getValueDescriptor</a></code>&nbsp;in interface&nbsp;<code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true" title="class or interface in com.google.protobuf">ProtocolMessageEnum</a></code></dd>
</dl>
</li>
</ul>
<a name="getDescriptorForType--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDescriptorForType</h4>
<pre>public final&nbsp;<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumDescriptor</a>&nbsp;getDescriptorForType()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true#getDescriptorForType--" title="class or interface in com.google.protobuf">getDescriptorForType</a></code>&nbsp;in interface&nbsp;<code><a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/ProtocolMessageEnum.html?is-external=true" title="class or interface in com.google.protobuf">ProtocolMessageEnum</a></code></dd>
</dl>
</li>
</ul>
<a name="getDescriptor--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDescriptor</h4>
<pre>public static final&nbsp;<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumDescriptor</a>&nbsp;getDescriptor()</pre>
</li>
</ul>
<a name="valueOf-com.google.protobuf.Descriptors.EnumValueDescriptor-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../com/google/logging/type/LogSeverity.html" title="enum in com.google.logging.type">LogSeverity</a>&nbsp;valueOf(<a href="https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Descriptors.EnumValueDescriptor.html?is-external=true" title="class or interface in com.google.protobuf">Descriptors.EnumValueDescriptor</a>&nbsp;desc)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/google/logging/type/HttpRequestProto.html" title="class in com.google.logging.type"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/google/logging/type/LogSeverityProto.html" title="class in com.google.logging.type"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/google/logging/type/LogSeverity.html" target="_top">Frames</a></li>
<li><a href="LogSeverity.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>