public static enum GrpcEndpointBuilderFactory.GrpcAuthType extends Enum<GrpcEndpointBuilderFactory.GrpcAuthType>
org.apache.camel.component.grpc.GrpcAuthType
enum.| Modifier and Type | Method and Description |
|---|---|
static GrpcEndpointBuilderFactory.GrpcAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrpcEndpointBuilderFactory.GrpcAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrpcEndpointBuilderFactory.GrpcAuthType NONE
public static final GrpcEndpointBuilderFactory.GrpcAuthType GOOGLE
public static final GrpcEndpointBuilderFactory.GrpcAuthType JWT
public static GrpcEndpointBuilderFactory.GrpcAuthType[] values()
for (GrpcEndpointBuilderFactory.GrpcAuthType c : GrpcEndpointBuilderFactory.GrpcAuthType.values()) System.out.println(c);
public static GrpcEndpointBuilderFactory.GrpcAuthType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullApache Camel