Class Property<T>

java.lang.Object
io.quarkus.kubernetes.spi.Property<T>

public class Property<T> extends Object
  • Constructor Details

    • Property

      public Property(String name, Class<T> type, Optional<T> value, T defaultValue, boolean runtime)
  • Method Details

    • fromRuntimeConfiguration

      public static <T> Property<T> fromRuntimeConfiguration(String name, Class<T> type, T defaultValue)
    • getName

      public String getName()
    • getType

      public Class<T> getType()
    • getValue

      public Optional<T> getValue()
    • getDefaultValue

      public T getDefaultValue()
    • isRuntime

      public boolean isRuntime()