Class Level
public class Level : Serializable, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, ISerializable
- Inheritance
-
Level
- Implements
- Inherited Members
- Extension Methods
Constructors
Level()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Level()
Level(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
public Level(params object[] args)
Parameters
args
object[]
Properties
ALL
public static Level ALL { get; }
Property Value
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
CONFIG
public static Level CONFIG { get; }
Property Value
FINE
public static Level FINE { get; }
Property Value
FINER
public static Level FINER { get; }
Property Value
FINEST
public static Level FINEST { get; }
Property Value
INFO
public static Level INFO { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
LocalizedName
public String LocalizedName { get; }
Property Value
Name
public String Name { get; }
Property Value
OFF
public static Level OFF { get; }
Property Value
ResourceBundleName
public String ResourceBundleName { get; }
Property Value
SEVERE
public static Level SEVERE { get; }
Property Value
WARNING
https://docs.oracle.com/en/java/javase/11/docs/api/java.logging/java/util/logging/Level.html#WARNING
public static Level WARNING { get; }
Property Value
Methods
IntValue()
public int IntValue()
Returns
Parse(String)
public static Level Parse(String arg0)