A B C D E F G H I L M N P R S T V W 
All Classes All Packages

A

add(Supplier<T>) - Method in interface io.helidon.common.LazyList
Add another lazy item to the list.

B

build() - Method in interface io.helidon.common.Builder
Build the instance from this builder.
Builder<T> - Interface in io.helidon.common
Interface for builders, to be able to accept a builder in addition to an instance.

C

cast(Object) - Method in class io.helidon.common.GenericType
Casts the parameter to the type of this generic type.
checkValid() - Method in class io.helidon.common.Errors
Check if these messages are a valid result, throws exception if not.
clear() - Method in class io.helidon.common.Errors.Collector
Clear this instance by discarding all Errors.ErrorMessages collected and re-setting status.
close() - Method in class io.helidon.common.HelidonConsoleHandler
Deprecated.
 
collect() - Method in class io.helidon.common.Errors.Collector
Process the messages collected into an Errors instance.
collector() - Static method in class io.helidon.common.Errors
Create a new message collector.
Collector() - Constructor for class io.helidon.common.Errors.Collector
 
configureRuntime() - Static method in class io.helidon.common.LogConfig
Reconfigures logging with runtime configuration if within a native image.
create(Class<N>) - Static method in class io.helidon.common.GenericType
Constructs a new generic type instance representing the given class.
create(Type) - Static method in class io.helidon.common.GenericType
Constructs a new generic type, using the provided generic type information and deriving the class.
create(Supplier<T>) - Static method in interface io.helidon.common.LazyValue
Create a lazy value from a supplier.
create(List<LazyValue<T>>) - Static method in interface io.helidon.common.LazyList
Create wrapper from provided list of LazyValues.
create(N) - Static method in class io.helidon.common.GenericType
Constructs a new generic type instance representing the class of the given object.
create(T) - Static method in interface io.helidon.common.LazyValue
Create a lazy value from a value.

D

DEFAULT_PRIORITY - Static variable in interface io.helidon.common.Prioritized
Default priority for any prioritized component (whether it implements this interface or uses javax.annotation.Priority annotation.

E

equals(Object) - Method in class io.helidon.common.Errors.ErrorMessage
 
equals(Object) - Method in class io.helidon.common.GenericType
 
Errors - Class in io.helidon.common
Errors utility used to file processing messages (e.g.
Errors.Collector - Class in io.helidon.common
A collector of Errors.ErrorMessages.
Errors.ErrorMessage - Class in io.helidon.common
Error message with a severity and a source.
Errors.ErrorMessagesException - Exception in io.helidon.common
Exception used by Errors.checkValid() thrown in case there are fatal messages.

F

fatal(Object, String) - Method in class io.helidon.common.Errors.Collector
Add a fatal error to the list of messages.
fatal(String) - Method in class io.helidon.common.Errors.Collector
Add a fatal error to the list of messages.
FATAL - io.helidon.common.Severity
Fatal.
flavor(HelidonFlavor) - Static method in class io.helidon.common.HelidonFeatures
Set the current Helidon flavor.
format(LogRecord) - Method in class io.helidon.common.HelidonConsoleHandler.ThreadFormatter
Deprecated.
 

G

GenericType<T> - Class in io.helidon.common
Represents a full type including generics declaration, to avoid information loss due to type erasure.
GenericType() - Constructor for class io.helidon.common.GenericType
Constructs a new generic type, deriving the generic type and class from type parameter.
get() - Method in interface io.helidon.common.Builder
 
getMessage() - Method in class io.helidon.common.Errors.ErrorMessage
Human-readable description of the issue.
getMessages() - Method in exception io.helidon.common.Errors.ErrorMessagesException
Get encountered error messages of all types (hint, warning, fatal).
getSeverity() - Method in class io.helidon.common.Errors.ErrorMessage
getSource() - Method in class io.helidon.common.Errors.ErrorMessage
The issue source.
getTypeName() - Method in class io.helidon.common.GenericType
 

H

hasFatal() - Method in class io.helidon.common.Errors.Collector
A helper method to check if this collector already has a fatal message.
hasFatal() - Method in class io.helidon.common.Errors
Check if a fatal message is part of these messages.
hashCode() - Method in class io.helidon.common.Errors.ErrorMessage
 
hashCode() - Method in class io.helidon.common.GenericType
 
hasHint() - Method in class io.helidon.common.Errors
Check if a hint message is part of these messages.
hasWarning() - Method in class io.helidon.common.Errors
Check if a warning message is part of these messages.
HelidonConsoleHandler - Class in io.helidon.common
Deprecated.
use io.helidon.logging.jul.HelidonConsoleHandler from helidon-logging-jul module instead
HelidonConsoleHandler() - Constructor for class io.helidon.common.HelidonConsoleHandler
Deprecated.
Creates a new HelidonConsoleHandler configured with: the output stream set to System.out the formatter set to a HelidonConsoleHandler.ThreadFormatter the level set to Level.ALL .
HelidonConsoleHandler.ThreadFormatter - Class in io.helidon.common
Deprecated.
A SimpleFormatter that replaces all occurrences of "!thread!" with the current thread.
HelidonFeatures - Class in io.helidon.common
Helidon Features support.
HelidonFlavor - Enum in io.helidon.common
Flavors of Helidon.
hint(Object, String) - Method in class io.helidon.common.Errors.Collector
Add a hint message to the list of messages.
hint(String) - Method in class io.helidon.common.Errors.Collector
Add a hint message to the list of messages.
HINT - io.helidon.common.Severity
Hint.

I

initClass() - Static method in class io.helidon.common.LogConfig
This method is for internal use, to correctly load logging configuration at AOT build time.
io.helidon.common - module io.helidon.common
Helidon Common library.
io.helidon.common - package io.helidon.common
Common utilities for Helidon projects.
isBuildTime() - Static method in class io.helidon.common.NativeImageHelper
Check whether we are in native image build time.
isClass() - Method in class io.helidon.common.GenericType
Whether this generic type represents a simple class with no generic information.
isLoaded() - Method in interface io.helidon.common.LazyValue
Return true if the value is loaded, false if the supplier was not invoked.
isNativeImage() - Static method in class io.helidon.common.NativeImageHelper
Check whether we are in native image environment (either build time or runtime).
isRuntime() - Static method in class io.helidon.common.NativeImageHelper
Check whether we are in native image runtime.
isValid() - Method in class io.helidon.common.Errors
Check if these messages are a valid result.

L

LazyList<T> - Interface in io.helidon.common
Wrapper for list of LazyValues while keeping laziness.
LazyValue<T> - Interface in io.helidon.common
A typed supplier that wraps another supplier and only retrieves the value on the first request to Supplier.get(), caching the value for all subsequent invocations.
log(Logger) - Method in class io.helidon.common.Errors
Log supplied errors and return a status flag indicating whether the result is OK or not (will return true for valid, false if Severity.FATAL is present).
LogConfig - Class in io.helidon.common
Logging configuration utility.

M

main(String[]) - Static method in class io.helidon.common.Version
Display version
message(Object, String, Severity) - Method in class io.helidon.common.Errors.Collector
Add a message to the list of messages.
message(String, Severity) - Method in class io.helidon.common.Errors.Collector
Add a message to the list of messages with source automatically added.
MP - io.helidon.common.HelidonFlavor
The "MicroProfile" flavor.

N

nativeBuildTime(ClassLoader) - Static method in class io.helidon.common.HelidonFeatures
Will scan all features and log errors and warnings for features that have a native image limitation.
NativeImageHelper - Class in io.helidon.common
Utility for GraalVM native image.

P

print(HelidonFlavor, String, boolean) - Static method in class io.helidon.common.HelidonFeatures
Print features for the current flavor.
Prioritized - Interface in io.helidon.common
Interface to define that this class is a class with priority.
priority() - Method in interface io.helidon.common.Prioritized
Priority of this class (maybe because it is defined dynamically, so it cannot be defined by an annotation).
publish(LogRecord) - Method in class io.helidon.common.HelidonConsoleHandler
Deprecated.
 

R

rawType() - Method in class io.helidon.common.GenericType
Returns the object representing the class or interface that declared the type represented by this generic type instance.
Reflected - Annotation Type in io.helidon.common
A type annotated with this annotation will be added to native image with reflection support for all methods and fields (including private).
REVISION - Static variable in class io.helidon.common.Version
Revision Number.

S

SE - io.helidon.common.HelidonFlavor
The "Standard Edition" flavor.
Severity - Enum in io.helidon.common
Severity of an event.

T

ThreadFormatter() - Constructor for class io.helidon.common.HelidonConsoleHandler.ThreadFormatter
Deprecated.
 
toString() - Method in class io.helidon.common.Errors.ErrorMessage
 
toString() - Method in class io.helidon.common.Errors
 
toString() - Method in class io.helidon.common.GenericType
 
type() - Method in class io.helidon.common.GenericType
The type represented by this generic type instance.

V

valueOf(String) - Static method in enum io.helidon.common.HelidonFlavor
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum io.helidon.common.Severity
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.helidon.common.HelidonFlavor
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum io.helidon.common.Severity
Returns an array containing the constants of this enum type, in the order they are declared.
Version - Class in io.helidon.common
Simple class to provide version information.
Version() - Constructor for class io.helidon.common.Version
 
VERSION - Static variable in class io.helidon.common.Version
Version.

W

warn(Object, String) - Method in class io.helidon.common.Errors.Collector
Add a warning message to the list of messages.
warn(String) - Method in class io.helidon.common.Errors.Collector
Add a warning message to the list of messages.
WARN - io.helidon.common.Severity
Warning.
A B C D E F G H I L M N P R S T V W 
All Classes All Packages