Package com.google.cloud.bigquery
Class ConnectionProperty
- java.lang.Object
-
- com.google.cloud.bigquery.ConnectionProperty
-
public final class ConnectionProperty extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConnectionProperty.Builder
A builder forConnectionProperty
objects.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getKey()
Return the key of property.String
getValue()
Return the value of property.int
hashCode()
static ConnectionProperty.Builder
newBuilder()
Returns a builder for theConnectionProperty
object.static ConnectionProperty
of(String key, String value)
Return a connection property for the given key and value.ConnectionProperty.Builder
toBuilder()
Returns a builder for theConnectionProperty
object.String
toString()
-
-
-
Method Detail
-
getKey
public String getKey()
Return the key of property.
-
getValue
public String getValue()
Return the value of property.
-
of
public static ConnectionProperty of(String key, String value)
Return a connection property for the given key and value.
-
newBuilder
public static ConnectionProperty.Builder newBuilder()
Returns a builder for theConnectionProperty
object.
-
toBuilder
public ConnectionProperty.Builder toBuilder()
Returns a builder for theConnectionProperty
object.
-
-