Uses of Enum Class
org.refcodes.logger.LogPriority
-
Uses of LogPriority in org.refcodes.logger
Fields in org.refcodes.logger declared as LogPriorityMethods in org.refcodes.logger that return LogPriorityModifier and TypeMethodDescriptionstatic LogPriorityTranslates (as good as it gets) a JULLevelto aLogPriority.LogPriorityColumn.fromStorageStrings(String[] aStringValues) LogPriorityAccessor.getLogPriority()Retrieves theLogPriorityfrom theLogPriorityAccessor.RuntimeLoggerImpl.getLogPriority()Retrieves theLogPriorityfrom theLogPriorityAccessor.RuntimeLoggerSingleton.getLogPriority()Retrieves theLogPriorityfrom theLogPriorityAccessor.default LogPriorityLogPriorityAccessor.LogPriorityProperty.letLogPriority(LogPriority aLogPriority) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given value (setter) as ofLogPriorityAccessor.LogPriorityMutator.setLogPriority(LogPriority)and returns the very same value (getter).static LogPriorityLogPriority.toProprtiry(String aPriorityName) Determines the priority from the given name, ignoring the case.static LogPriorityReturns the enum constant of this class with the specified name.static LogPriority[]LogPriority.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.refcodes.logger with parameters of type LogPriorityModifier and TypeMethodDescriptionprotected voidRuntimeLoggerImpl.doLog(LogPriority aPriority, String aMessage, StackTraceElement aStackTraceElement, Throwable aThrowable) Helper method to log the required information.booleanRuntimeLogger.isLog(LogPriority aPriority) Determines whether theRuntimeLoggeris being configured to log messages of the accordingLogPriority.booleanRuntimeLoggerImpl.isLog(LogPriority aPriority) Determines whether theRuntimeLoggeris being configured to log messages of the accordingLogPriority.booleanRuntimeLoggerSingleton.isLog(LogPriority aPriority) Determines whether theRuntimeLoggeris being configured to log messages of the accordingLogPriority.default LogPriorityLogPriorityAccessor.LogPriorityProperty.letLogPriority(LogPriority aLogPriority) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given value (setter) as ofLogPriorityAccessor.LogPriorityMutator.setLogPriority(LogPriority)and returns the very same value (getter).voidRuntimeLogger.log(LogPriority aPriority, String aMessage, Throwable aThrowable) Creates a new log aMessage.voidRuntimeLogger.log(LogPriority aPriority, String aMessage, Throwable aThrowable, Object... aArguments) Creates a new log aMessage.voidRuntimeLoggerImpl.log(LogPriority aPriority, String aMessage) Creates a new log aMessage.voidRuntimeLoggerImpl.log(LogPriority aPriority, String aMessage, Object... aArguments) Creates a new log aMessage.voidRuntimeLoggerImpl.log(LogPriority aPriority, String aMessage, Throwable aThrowable) Creates a new log aMessage.voidRuntimeLoggerImpl.log(LogPriority aPriority, String aMessage, Throwable aThrowable, Object... aArguments) Creates a new log aMessage.voidRuntimeLoggerSingleton.log(LogPriority aMarker, String aMessage) Creates a new log aMessage.voidRuntimeLoggerSingleton.log(LogPriority aMarker, String aMessage, Object... aArguments) Creates a new log aMessage.voidRuntimeLoggerSingleton.log(LogPriority aPriority, String aMessage, Throwable aThrowable) Creates a new log aMessage.voidRuntimeLoggerSingleton.log(LogPriority aPriority, String aMessage, Throwable aThrowable, Object... aArguments) Creates a new log aMessage.voidLogPriorityAccessor.LogPriorityMutator.setLogPriority(LogPriority aPriority) Sets theLogPriorityfor theLogPriorityAccessor.voidRuntimeLoggerImpl.setLogPriority(LogPriority aLogPriority) Sets theLogPriorityfor theLogPriorityAccessor.String[]LogPriorityColumn.toStorageStrings(LogPriority aValue) Constructors in org.refcodes.logger with parameters of type LogPriorityModifierConstructorDescriptionRuntimeLoggerImpl(String aName, Logger<Object> aLogger, LogPriority aPriority) Constructs aRuntimeLoggerlogging with the givenLoggerand the desiredLogPriorityfor the messages being logged and upwards (from the givengetPriority()and higher).RuntimeLoggerImpl(Logger<Object> aLogger, LogPriority aPriority) Constructs aRuntimeLoggerlogging with the givenLoggerand the desiredLogPriorityfor the messages being logged and upwards (from the givengetPriority()and higher).