Enum MicronautRuntime

    • Enum Constant Detail

      • NONE

        public static final MicronautRuntime NONE
        No specific runtime specified.
      • LAMBDA

        public static final MicronautRuntime LAMBDA
        AWS lambda packaged as a Jar file.
      • ORACLE_FUNCTION

        public static final MicronautRuntime ORACLE_FUNCTION
        Oracle Cloud Function, packaged as a docker container.
      • GOOGLE_FUNCTION

        public static final MicronautRuntime GOOGLE_FUNCTION
        Google Cloud Function, packaged as a Fat JAR.
      • AZURE_FUNCTION

        public static final MicronautRuntime AZURE_FUNCTION
        Azure Cloud Function.
    • Method Detail

      • values

        public static MicronautRuntime[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MicronautRuntime c : MicronautRuntime.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MicronautRuntime valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getBuildStrategy

        public DockerBuildStrategy getBuildStrategy()
        Returns:
        The docker build strategy