Enum CloudPlatform

    • Method Detail

      • values

        public static CloudPlatform[] 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 (CloudPlatform c : CloudPlatform.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CloudPlatform 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
      • isActive

        public abstract boolean isActive​(org.springframework.core.env.Environment environment)
        Determines if the platform is active (i.e. the application is running in it).
        Parameters:
        environment - the environment
        Returns:
        if the platform is active.
      • isUsingForwardHeaders

        public boolean isUsingForwardHeaders()
        Returns if the platform is behind a load balancer and uses X-Forwarded-For headers.
        Returns:
        if X-Forwarded-For headers are used
      • getActive

        public static CloudPlatform getActive​(org.springframework.core.env.Environment environment)
        Returns the active CloudPlatform or null if one cannot be deduced.
        Parameters:
        environment - the environment
        Returns:
        the CloudPlatform or null