-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21dbff1
commit 7fcabb1
Showing
19 changed files
with
2,853 additions
and
510 deletions.
There are no files selected for viewing
249 changes: 249 additions & 0 deletions
249
...loud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/AnnotationSpecName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,249 @@ | ||
/* | ||
* Copyright 2018 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. See the License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
package com.google.cloud.automl.v1beta1; | ||
|
||
import com.google.api.pathtemplate.PathTemplate; | ||
import com.google.api.resourcenames.ResourceName; | ||
import com.google.common.base.Preconditions; | ||
import com.google.common.collect.ImmutableMap; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public class AnnotationSpecName implements ResourceName { | ||
|
||
private static final PathTemplate PATH_TEMPLATE = | ||
PathTemplate.createWithoutUrlEncoding( | ||
"projects/{project}/locations/{location}/datasets/{dataset}/annotationSpecs/{annotation_spec}"); | ||
|
||
private volatile Map<String, String> fieldValuesMap; | ||
|
||
private final String project; | ||
private final String location; | ||
private final String dataset; | ||
private final String annotationSpec; | ||
|
||
public String getProject() { | ||
return project; | ||
} | ||
|
||
public String getLocation() { | ||
return location; | ||
} | ||
|
||
public String getDataset() { | ||
return dataset; | ||
} | ||
|
||
public String getAnnotationSpec() { | ||
return annotationSpec; | ||
} | ||
|
||
public static Builder newBuilder() { | ||
return new Builder(); | ||
} | ||
|
||
public Builder toBuilder() { | ||
return new Builder(this); | ||
} | ||
|
||
private AnnotationSpecName(Builder builder) { | ||
project = Preconditions.checkNotNull(builder.getProject()); | ||
location = Preconditions.checkNotNull(builder.getLocation()); | ||
dataset = Preconditions.checkNotNull(builder.getDataset()); | ||
annotationSpec = Preconditions.checkNotNull(builder.getAnnotationSpec()); | ||
} | ||
|
||
public static AnnotationSpecName of( | ||
String project, String location, String dataset, String annotationSpec) { | ||
return newBuilder() | ||
.setProject(project) | ||
.setLocation(location) | ||
.setDataset(dataset) | ||
.setAnnotationSpec(annotationSpec) | ||
.build(); | ||
} | ||
|
||
public static String format( | ||
String project, String location, String dataset, String annotationSpec) { | ||
return newBuilder() | ||
.setProject(project) | ||
.setLocation(location) | ||
.setDataset(dataset) | ||
.setAnnotationSpec(annotationSpec) | ||
.build() | ||
.toString(); | ||
} | ||
|
||
public static AnnotationSpecName parse(String formattedString) { | ||
if (formattedString.isEmpty()) { | ||
return null; | ||
} | ||
Map<String, String> matchMap = | ||
PATH_TEMPLATE.validatedMatch( | ||
formattedString, "AnnotationSpecName.parse: formattedString not in valid format"); | ||
return of( | ||
matchMap.get("project"), | ||
matchMap.get("location"), | ||
matchMap.get("dataset"), | ||
matchMap.get("annotation_spec")); | ||
} | ||
|
||
public static List<AnnotationSpecName> parseList(List<String> formattedStrings) { | ||
List<AnnotationSpecName> list = new ArrayList<>(formattedStrings.size()); | ||
for (String formattedString : formattedStrings) { | ||
list.add(parse(formattedString)); | ||
} | ||
return list; | ||
} | ||
|
||
public static List<String> toStringList(List<AnnotationSpecName> values) { | ||
List<String> list = new ArrayList<String>(values.size()); | ||
for (AnnotationSpecName value : values) { | ||
if (value == null) { | ||
list.add(""); | ||
} else { | ||
list.add(value.toString()); | ||
} | ||
} | ||
return list; | ||
} | ||
|
||
public static boolean isParsableFrom(String formattedString) { | ||
return PATH_TEMPLATE.matches(formattedString); | ||
} | ||
|
||
public Map<String, String> getFieldValuesMap() { | ||
if (fieldValuesMap == null) { | ||
synchronized (this) { | ||
if (fieldValuesMap == null) { | ||
ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder(); | ||
fieldMapBuilder.put("project", project); | ||
fieldMapBuilder.put("location", location); | ||
fieldMapBuilder.put("dataset", dataset); | ||
fieldMapBuilder.put("annotationSpec", annotationSpec); | ||
fieldValuesMap = fieldMapBuilder.build(); | ||
} | ||
} | ||
} | ||
return fieldValuesMap; | ||
} | ||
|
||
public String getFieldValue(String fieldName) { | ||
return getFieldValuesMap().get(fieldName); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return PATH_TEMPLATE.instantiate( | ||
"project", | ||
project, | ||
"location", | ||
location, | ||
"dataset", | ||
dataset, | ||
"annotation_spec", | ||
annotationSpec); | ||
} | ||
|
||
/** Builder for AnnotationSpecName. */ | ||
public static class Builder { | ||
|
||
private String project; | ||
private String location; | ||
private String dataset; | ||
private String annotationSpec; | ||
|
||
public String getProject() { | ||
return project; | ||
} | ||
|
||
public String getLocation() { | ||
return location; | ||
} | ||
|
||
public String getDataset() { | ||
return dataset; | ||
} | ||
|
||
public String getAnnotationSpec() { | ||
return annotationSpec; | ||
} | ||
|
||
public Builder setProject(String project) { | ||
this.project = project; | ||
return this; | ||
} | ||
|
||
public Builder setLocation(String location) { | ||
this.location = location; | ||
return this; | ||
} | ||
|
||
public Builder setDataset(String dataset) { | ||
this.dataset = dataset; | ||
return this; | ||
} | ||
|
||
public Builder setAnnotationSpec(String annotationSpec) { | ||
this.annotationSpec = annotationSpec; | ||
return this; | ||
} | ||
|
||
private Builder() {} | ||
|
||
private Builder(AnnotationSpecName annotationSpecName) { | ||
project = annotationSpecName.project; | ||
location = annotationSpecName.location; | ||
dataset = annotationSpecName.dataset; | ||
annotationSpec = annotationSpecName.annotationSpec; | ||
} | ||
|
||
public AnnotationSpecName build() { | ||
return new AnnotationSpecName(this); | ||
} | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (o == this) { | ||
return true; | ||
} | ||
if (o instanceof AnnotationSpecName) { | ||
AnnotationSpecName that = (AnnotationSpecName) o; | ||
return (this.project.equals(that.project)) | ||
&& (this.location.equals(that.location)) | ||
&& (this.dataset.equals(that.dataset)) | ||
&& (this.annotationSpec.equals(that.annotationSpec)); | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
int h = 1; | ||
h *= 1000003; | ||
h ^= project.hashCode(); | ||
h *= 1000003; | ||
h ^= location.hashCode(); | ||
h *= 1000003; | ||
h ^= dataset.hashCode(); | ||
h *= 1000003; | ||
h ^= annotationSpec.hashCode(); | ||
return h; | ||
} | ||
} |
Oops, something went wrong.