Package ipsk.db.speech
Enum Session.LogLevel
- java.lang.Object
- 
- java.lang.Enum<Session.LogLevel>
- 
- ipsk.db.speech.Session.LogLevel
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Session.LogLevel>
 - Enclosing class:
- Session
 
 public static enum Session.LogLevel extends java.lang.Enum<Session.LogLevel> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Session.LogLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Session.LogLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SEVEREpublic static final Session.LogLevel SEVERE 
 - 
WARNINGpublic static final Session.LogLevel WARNING 
 - 
INFOpublic static final Session.LogLevel INFO 
 - 
CONFIGpublic static final Session.LogLevel CONFIG 
 - 
FINEpublic static final Session.LogLevel FINE 
 - 
FINERpublic static final Session.LogLevel FINER 
 - 
FINESTpublic static final Session.LogLevel FINEST 
 
- 
 - 
Method Detail- 
valuespublic static Session.LogLevel[] 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 (Session.LogLevel c : Session.LogLevel.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Session.LogLevel 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
 
 
- 
 
-