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

xyz.block.ftl.v1.ConfigProvider Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: xyz/block/ftl/v1/ftl.proto

// Protobuf Java Version: 3.25.4
package xyz.block.ftl.v1;

/**
 * Protobuf enum {@code xyz.block.ftl.v1.ConfigProvider}
 */
public enum ConfigProvider
    implements com.google.protobuf.ProtocolMessageEnum {
  /**
   * 
   * Write values inline in the configuration file.
   * 
* * CONFIG_INLINE = 0; */ CONFIG_INLINE(0), /** *
   * Print configuration as environment variables.
   * 
* * CONFIG_ENVAR = 1; */ CONFIG_ENVAR(1), /** *
   * Use the database as a configuration store.
   * 
* * CONFIG_DB = 2; */ CONFIG_DB(2), UNRECOGNIZED(-1), ; /** *
   * Write values inline in the configuration file.
   * 
* * CONFIG_INLINE = 0; */ public static final int CONFIG_INLINE_VALUE = 0; /** *
   * Print configuration as environment variables.
   * 
* * CONFIG_ENVAR = 1; */ public static final int CONFIG_ENVAR_VALUE = 1; /** *
   * Use the database as a configuration store.
   * 
* * CONFIG_DB = 2; */ public static final int CONFIG_DB_VALUE = 2; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static ConfigProvider valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static ConfigProvider forNumber(int value) { switch (value) { case 0: return CONFIG_INLINE; case 1: return CONFIG_ENVAR; case 2: return CONFIG_DB; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< ConfigProvider> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public ConfigProvider findValueByNumber(int number) { return ConfigProvider.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return xyz.block.ftl.v1.Ftl.getDescriptor().getEnumTypes().get(2); } private static final ConfigProvider[] VALUES = values(); public static ConfigProvider valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private ConfigProvider(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:xyz.block.ftl.v1.ConfigProvider) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy