Uses of Class
com.atlassian.confluence.internal.health.JohnsonEventLevel
-
Packages that use JohnsonEventLevel Package Description com.atlassian.confluence.internal.health com.atlassian.confluence.setup.johnson -
-
Uses of JohnsonEventLevel in com.atlassian.confluence.internal.health
Methods in com.atlassian.confluence.internal.health that return JohnsonEventLevel Modifier and Type Method Description static JohnsonEventLevel
JohnsonEventLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static JohnsonEventLevel[]
JohnsonEventLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.static JohnsonEventLevel
JohnsonEventLevel. withName(String levelName)
Returns the enum value with the given level name.Methods in com.atlassian.confluence.internal.health with parameters of type JohnsonEventLevel Modifier and Type Method Description static @NonNull Predicate<com.atlassian.johnson.event.Event>
JohnsonEventPredicates. hasLevel(JohnsonEventLevel eventLevel)
Returns a predicate that checks whether the event has exactly the given level.boolean
JohnsonEventLevel. isAtLeast(JohnsonEventLevel minimumLevel)
Indicates whether this event level is at least as severe as the given level. -
Uses of JohnsonEventLevel in com.atlassian.confluence.setup.johnson
Methods in com.atlassian.confluence.setup.johnson that return types with arguments of type JohnsonEventLevel Modifier and Type Method Description static Optional<JohnsonEventLevel>
JohnsonUtils. findHighestEventLevel()
Returns the highest event level within the initialised Johnson container, if any.static Optional<JohnsonEventLevel>
JohnsonUtils. findHighestEventLevel(com.atlassian.johnson.JohnsonEventContainer eventContainer)
Returns the highest event level within the given event container, if any.Methods in com.atlassian.confluence.setup.johnson with parameters of type JohnsonEventLevel Modifier and Type Method Description static com.atlassian.johnson.event.Event
JohnsonUtils. raiseJohnsonEvent(JohnsonEventType eventType, String eventDescription, @Nullable String exception, JohnsonEventLevel eventLevel)
Raises anEvent
with the given properties in the currently initialised Johnson container.static com.atlassian.johnson.event.Event
JohnsonUtils. raiseJohnsonEventRequiringTranslation(JohnsonEventType eventType, String i18nKey, @Nullable String exception, JohnsonEventLevel eventLevel)
Raises anEvent
whose description requires translation in the currently initialised Johnson container.
-