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

org.infinispan.protostream.descriptors.EnumValueDescriptor Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.protostream.descriptors;

import static java.util.Collections.unmodifiableList;

import java.util.List;

/**
 * Represents each constant value of a enumeration in a .proto file.
 *
 * @author gustavonalle
 * @author [email protected]
 * @since 2.0
 */
public final class EnumValueDescriptor {

   private final String name;
   private String fullName;
   private String scopedName; // the name of this enum value constant in its scope
   private final int number;
   private final String documentation;
   private final List




© 2015 - 2025 Weber Informatics LLC | Privacy Policy