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 classConnectionProperty.BuilderA builder forConnectionPropertyobjects.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetKey()Return the key of property.StringgetValue()Return the value of property.inthashCode()static ConnectionProperty.BuildernewBuilder()Returns a builder for theConnectionPropertyobject.static ConnectionPropertyof(String key, String value)Return a connection property for the given key and value.ConnectionProperty.BuildertoBuilder()Returns a builder for theConnectionPropertyobject.StringtoString()
-
-
-
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 theConnectionPropertyobject.
-
toBuilder
public ConnectionProperty.Builder toBuilder()
Returns a builder for theConnectionPropertyobject.
-
-