All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cdk8s.SizeRoundingBehavior Maven / Gradle / Ivy

Go to download

This is the core library of Cloud Development Kit (CDK) for Kubernetes (cdk8s). cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster.

There is a newer version: 2.69.27
Show newest version
package org.cdk8s;

/**
 * Rounding behaviour when converting between units of Size.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.92.0 (build db7f27d)", date = "2023-11-17T12:32:48.505Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = org.cdk8s.$Module.class, fqn = "cdk8s.SizeRoundingBehavior")
public enum SizeRoundingBehavior {
    /**
     * Fail the conversion if the result is not an integer.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    FAIL,
    /**
     * If the result is not an integer, round it to the closest integer less than the result.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    FLOOR,
    /**
     * Don't round.
     * 

* Return even if the result is a fraction. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) NONE, }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy