Interface UrlOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Url
,Url.Builder
public interface UrlOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getHost()
Host or Host:Port.com.google.protobuf.ByteString
getHostBytes()
Host or Host:Port.String
getPath()
Path starts with `/`.com.google.protobuf.ByteString
getPathBytes()
Path starts with `/`.Scheme
getScheme()
Scheme.int
getSchemeValue()
Scheme.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSchemeValue
int getSchemeValue()
Scheme.
.google.cloud.apigeeconnect.v1.Scheme scheme = 1;
- Returns:
- The enum numeric value on the wire for scheme.
-
getScheme
Scheme getScheme()
Scheme.
.google.cloud.apigeeconnect.v1.Scheme scheme = 1;
- Returns:
- The scheme.
-
getHost
String getHost()
Host or Host:Port.
string host = 2;
- Returns:
- The host.
-
getHostBytes
com.google.protobuf.ByteString getHostBytes()
Host or Host:Port.
string host = 2;
- Returns:
- The bytes for host.
-
getPath
String getPath()
Path starts with `/`.
string path = 3;
- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Path starts with `/`.
string path = 3;
- Returns:
- The bytes for path.
-
-