Enum Class SystemName

java.lang.Object
java.lang.Enum<SystemName>
com.yahoo.config.provision.SystemName
All Implemented Interfaces:
Serializable, Comparable<SystemName>, Constable

public enum SystemName extends Enum<SystemName>
Systems in hosted Vespa
Author:
mpolden
  • Enum Constant Details

    • cd

      public static final SystemName cd
      Continuous deployment system
    • main

      public static final SystemName main
      Production system
    • Public

      public static final SystemName Public
      System accessible to the public
    • PublicCd

      public static final SystemName PublicCd
      Continuous deployment system for testing the Public system
    • dev

      public static final SystemName dev
      Local development system
  • Method Details

    • values

      public static SystemName[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SystemName valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • defaultSystem

      public static SystemName defaultSystem()
    • from

      public static SystemName from(String value)
    • value

      public String value()
    • isPublic

      public boolean isPublic()
      Whether the system is similar to Public, e.g. PublicCd.
    • isCd

      public boolean isCd()
      Whether the system is used for continuous deployment.
    • all

      public static Set<SystemName> all()
    • allOf

      public static Set<SystemName> allOf(Predicate<SystemName> predicate)
    • hostedVespa

      public static Set<SystemName> hostedVespa()