Package com.google.protobuf
Enum Descriptors.DescriptorPool.SearchFilter
- java.lang.Object
-
- java.lang.Enum<Descriptors.DescriptorPool.SearchFilter>
-
- com.google.protobuf.Descriptors.DescriptorPool.SearchFilter
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Descriptors.DescriptorPool.SearchFilter>
- Enclosing class:
- Descriptors.DescriptorPool
static enum Descriptors.DescriptorPool.SearchFilter extends java.lang.Enum<Descriptors.DescriptorPool.SearchFilter>
Defines what subclass of descriptors to search in the descriptor pool.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATES_ONLY
ALL_SYMBOLS
TYPES_ONLY
-
Constructor Summary
Constructors Modifier Constructor Description private
SearchFilter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Descriptors.DescriptorPool.SearchFilter
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Descriptors.DescriptorPool.SearchFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPES_ONLY
public static final Descriptors.DescriptorPool.SearchFilter TYPES_ONLY
-
AGGREGATES_ONLY
public static final Descriptors.DescriptorPool.SearchFilter AGGREGATES_ONLY
-
ALL_SYMBOLS
public static final Descriptors.DescriptorPool.SearchFilter ALL_SYMBOLS
-
-
Method Detail
-
values
public static Descriptors.DescriptorPool.SearchFilter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Descriptors.DescriptorPool.SearchFilter c : Descriptors.DescriptorPool.SearchFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Descriptors.DescriptorPool.SearchFilter valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-