
org.infinispan.protostream.descriptors.EnumValueDescriptor Maven / Gradle / Ivy
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