org.apache.lucene.util
107
I
Accountable
C
Accountables
C
ArrayUtil
I
Attribute
C
AttributeFactory
C
AttributeImpl
I
AttributeReflector
C
AttributeSource
C
BitDocIdSet
C
BitSet
C
BitSetIterator
C
BitUtil
I
Bits
C
ByteBlockPool
C
BytesRef
C
BytesRefArray
C
BytesRefBlockPool
C
BytesRefBuilder
C
BytesRefComparator
C
BytesRefHash
I
BytesRefIterator
C
CharsRef
C
CharsRefBuilder
I
ClassLoaderUtils
C
ClasspathResourceLoader
C
CloseableThreadLocal
C
CollectionUtil
C
CommandLineUtil
C
Constants
C
Counter
C
DenseLiveDocs
C
DocBaseBitSetIterator
C
DocIdSetBuilder
C
FileDeleter
C
FilterIterator
C
FixedBitSet
C
FixedLengthBytesRefArray
I
FloatToFloatFunction
C
FrequencyTrackingRingBuffer
C
GroupVIntUtil
I
IOBooleanSupplier
I
IOConsumer
I
IOFunction
I
IORunnable
I
IOSupplier
C
IOUtils
A
IgnoreRandomChains
C
InPlaceMergeSorter
C
InfoStream
C
IntBlockPool
C
IntroSelector
C
IntroSorter
C
IntsRef
C
IntsRefBuilder
C
JavaLoggingInfoStream
C
LSBRadixSorter
I
LiveDocs
C
LongBitSet
C
LongHeap
C
LongValues
C
LongsRef
C
MSBRadixSorter
C
MapOfSets
C
MathUtil
C
MergedIterator
C
ModuleResourceLoader
C
NamedSPILoader
C
NamedThreadFactory
C
NotDocIdSet
C
NumericUtils
C
OfflineSorter
C
PagedBytes
C
PrintStreamInfoStream
C
PriorityQueue
C
QueryBuilder
C
RadixSelector
C
RamUsageEstimator
C
RecyclingByteBlockAllocator
C
RecyclingIntBlockAllocator
C
RefCount
I
ResourceLoader
I
ResourceLoaderAware
C
RoaringDocIdSet
C
RollingBuffer
C
SameThreadExecutorService
C
Selector
C
SentinelIntSet
C
SetOnce
C
SloppyMath
C
SmallFloat
C
Sorter
C
SparseFixedBitSet
C
SparseLiveDocs
C
StableMSBRadixSorter
C
StringHelper
C
StringSorter
A
SuppressForbidden
C
TernaryLongHeap
C
ThreadInterruptedException
C
TimSorter
C
ToStringUtils
C
UnicodeUtil
I
Unwrappable
C
VectorUtil
C
Version
C
VirtualMethod
C
WeakIdentityMap
org.apache.lucene.util.JavaLoggingInfoStream
InfoStream implementation that logs every message using Java Utils Logging (JUL) with the
supplied log level.
Constructors
new
new
(
Level level
)
Java: <init>(java.util.logging.Level level)
Gets an implementation using the given log level with a default prefix
"org.apache.lucene.".
| name | type | description |
| level | java.util.logging.Level | Requested log level to be used while logging |
new
new
(
String name_prefix,
Level level
)
Java: <init>(String namePrefix, java.util.logging.Level level)
Gets an implementation that logs using the given log level and adds a prefix to the component
name.
| name | type | description |
| name_prefix | String | Prefix to be applied to all component names. It must be empty or include a
final dot |
| level | java.util.logging.Level | Requested log level to be used while logging |
new
new
(
Function<String,String> component_to_logger_name,
Level level
)
Java: <init>(java.util.function.Function<String,String> componentToLoggerName, java.util.logging.Level level)
Gets an implementation that logs using the given log level with a logger name derived from the
component name.
| name | type | description |
| component_to_logger_name | java.util.function.Function<String,String> | A function to convert a component name to a valid JUL logger name |
| level | java.util.logging.Level | Requested log level to be used while logging |
Instance Methods
is_enabled
boolean
is_enabled
(
String component
)
Java: isEnabled(String component)
message
message
(
String component,
String message
)
Java: message(String component, String message)
Inherited
| field | type | note |
| NO_OUTPUT |
InfoStream |
Instance of InfoStream that does no logging at all. |