public enum Packaging extends Enum<Packaging>
Enum Constant and Description |
---|
DOCKER |
DOCKER_CRAC |
DOCKER_NATIVE |
JAR |
NATIVE_IMAGE |
Modifier and Type | Method and Description |
---|---|
String |
id() |
static Packaging |
of(String value) |
static Packaging |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Packaging[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Packaging JAR
public static final Packaging NATIVE_IMAGE
public static final Packaging DOCKER
public static final Packaging DOCKER_NATIVE
public static final Packaging DOCKER_CRAC
public static Packaging[] values()
for (Packaging c : Packaging.values()) System.out.println(c);
public static Packaging valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String id()
Copyright © 2020–2023 Micronaut. All rights reserved.