1 /* 2 * Copyright 2022 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.cloud.dialogflow.v2; 18 19 import com.google.api.core.BetaApi; 20 import com.google.api.pathtemplate.PathTemplate; 21 import com.google.api.pathtemplate.ValidationException; 22 import com.google.api.resourcenames.ResourceName; 23 import com.google.common.base.Preconditions; 24 import com.google.common.collect.ImmutableMap; 25 import java.util.ArrayList; 26 import java.util.List; 27 import java.util.Map; 28 import java.util.Objects; 29 import javax.annotation.Generated; 30 31 // AUTO-GENERATED DOCUMENTATION AND CLASS. 32 @Generated("by gapic-generator-java") 33 public class AnswerRecordName implements ResourceName { 34 private static final PathTemplate PROJECT_ANSWER_RECORD = 35 PathTemplate.createWithoutUrlEncoding("projects/{project}/answerRecords/{answer_record}"); 36 private static final PathTemplate PROJECT_LOCATION_ANSWER_RECORD = 37 PathTemplate.createWithoutUrlEncoding( 38 "projects/{project}/locations/{location}/answerRecords/{answer_record}"); 39 private volatile Map<String, String> fieldValuesMap; 40 private PathTemplate pathTemplate; 41 private String fixedValue; 42 private final String project; 43 private final String answerRecord; 44 private final String location; 45 46 @Deprecated AnswerRecordName()47 protected AnswerRecordName() { 48 project = null; 49 answerRecord = null; 50 location = null; 51 } 52 AnswerRecordName(Builder builder)53 private AnswerRecordName(Builder builder) { 54 project = Preconditions.checkNotNull(builder.getProject()); 55 answerRecord = Preconditions.checkNotNull(builder.getAnswerRecord()); 56 location = null; 57 pathTemplate = PROJECT_ANSWER_RECORD; 58 } 59 AnswerRecordName(ProjectLocationAnswerRecordBuilder builder)60 private AnswerRecordName(ProjectLocationAnswerRecordBuilder builder) { 61 project = Preconditions.checkNotNull(builder.getProject()); 62 location = Preconditions.checkNotNull(builder.getLocation()); 63 answerRecord = Preconditions.checkNotNull(builder.getAnswerRecord()); 64 pathTemplate = PROJECT_LOCATION_ANSWER_RECORD; 65 } 66 getProject()67 public String getProject() { 68 return project; 69 } 70 getAnswerRecord()71 public String getAnswerRecord() { 72 return answerRecord; 73 } 74 getLocation()75 public String getLocation() { 76 return location; 77 } 78 newBuilder()79 public static Builder newBuilder() { 80 return new Builder(); 81 } 82 83 @BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.") newProjectAnswerRecordBuilder()84 public static Builder newProjectAnswerRecordBuilder() { 85 return new Builder(); 86 } 87 88 @BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.") newProjectLocationAnswerRecordBuilder()89 public static ProjectLocationAnswerRecordBuilder newProjectLocationAnswerRecordBuilder() { 90 return new ProjectLocationAnswerRecordBuilder(); 91 } 92 toBuilder()93 public Builder toBuilder() { 94 return new Builder(this); 95 } 96 of(String project, String answerRecord)97 public static AnswerRecordName of(String project, String answerRecord) { 98 return newBuilder().setProject(project).setAnswerRecord(answerRecord).build(); 99 } 100 101 @BetaApi("The static create methods are not stable yet and may be changed in the future.") ofProjectAnswerRecordName(String project, String answerRecord)102 public static AnswerRecordName ofProjectAnswerRecordName(String project, String answerRecord) { 103 return newBuilder().setProject(project).setAnswerRecord(answerRecord).build(); 104 } 105 106 @BetaApi("The static create methods are not stable yet and may be changed in the future.") ofProjectLocationAnswerRecordName( String project, String location, String answerRecord)107 public static AnswerRecordName ofProjectLocationAnswerRecordName( 108 String project, String location, String answerRecord) { 109 return newProjectLocationAnswerRecordBuilder() 110 .setProject(project) 111 .setLocation(location) 112 .setAnswerRecord(answerRecord) 113 .build(); 114 } 115 format(String project, String answerRecord)116 public static String format(String project, String answerRecord) { 117 return newBuilder().setProject(project).setAnswerRecord(answerRecord).build().toString(); 118 } 119 120 @BetaApi("The static format methods are not stable yet and may be changed in the future.") formatProjectAnswerRecordName(String project, String answerRecord)121 public static String formatProjectAnswerRecordName(String project, String answerRecord) { 122 return newBuilder().setProject(project).setAnswerRecord(answerRecord).build().toString(); 123 } 124 125 @BetaApi("The static format methods are not stable yet and may be changed in the future.") formatProjectLocationAnswerRecordName( String project, String location, String answerRecord)126 public static String formatProjectLocationAnswerRecordName( 127 String project, String location, String answerRecord) { 128 return newProjectLocationAnswerRecordBuilder() 129 .setProject(project) 130 .setLocation(location) 131 .setAnswerRecord(answerRecord) 132 .build() 133 .toString(); 134 } 135 parse(String formattedString)136 public static AnswerRecordName parse(String formattedString) { 137 if (formattedString.isEmpty()) { 138 return null; 139 } 140 if (PROJECT_ANSWER_RECORD.matches(formattedString)) { 141 Map<String, String> matchMap = PROJECT_ANSWER_RECORD.match(formattedString); 142 return ofProjectAnswerRecordName(matchMap.get("project"), matchMap.get("answer_record")); 143 } else if (PROJECT_LOCATION_ANSWER_RECORD.matches(formattedString)) { 144 Map<String, String> matchMap = PROJECT_LOCATION_ANSWER_RECORD.match(formattedString); 145 return ofProjectLocationAnswerRecordName( 146 matchMap.get("project"), matchMap.get("location"), matchMap.get("answer_record")); 147 } 148 throw new ValidationException("AnswerRecordName.parse: formattedString not in valid format"); 149 } 150 parseList(List<String> formattedStrings)151 public static List<AnswerRecordName> parseList(List<String> formattedStrings) { 152 List<AnswerRecordName> list = new ArrayList<>(formattedStrings.size()); 153 for (String formattedString : formattedStrings) { 154 list.add(parse(formattedString)); 155 } 156 return list; 157 } 158 toStringList(List<AnswerRecordName> values)159 public static List<String> toStringList(List<AnswerRecordName> values) { 160 List<String> list = new ArrayList<>(values.size()); 161 for (AnswerRecordName value : values) { 162 if (value == null) { 163 list.add(""); 164 } else { 165 list.add(value.toString()); 166 } 167 } 168 return list; 169 } 170 isParsableFrom(String formattedString)171 public static boolean isParsableFrom(String formattedString) { 172 return PROJECT_ANSWER_RECORD.matches(formattedString) 173 || PROJECT_LOCATION_ANSWER_RECORD.matches(formattedString); 174 } 175 176 @Override getFieldValuesMap()177 public Map<String, String> getFieldValuesMap() { 178 if (fieldValuesMap == null) { 179 synchronized (this) { 180 if (fieldValuesMap == null) { 181 ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder(); 182 if (project != null) { 183 fieldMapBuilder.put("project", project); 184 } 185 if (answerRecord != null) { 186 fieldMapBuilder.put("answer_record", answerRecord); 187 } 188 if (location != null) { 189 fieldMapBuilder.put("location", location); 190 } 191 fieldValuesMap = fieldMapBuilder.build(); 192 } 193 } 194 } 195 return fieldValuesMap; 196 } 197 getFieldValue(String fieldName)198 public String getFieldValue(String fieldName) { 199 return getFieldValuesMap().get(fieldName); 200 } 201 202 @Override toString()203 public String toString() { 204 return fixedValue != null ? fixedValue : pathTemplate.instantiate(getFieldValuesMap()); 205 } 206 207 @Override equals(Object o)208 public boolean equals(Object o) { 209 if (o == this) { 210 return true; 211 } 212 if (o != null || getClass() == o.getClass()) { 213 AnswerRecordName that = ((AnswerRecordName) o); 214 return Objects.equals(this.project, that.project) 215 && Objects.equals(this.answerRecord, that.answerRecord) 216 && Objects.equals(this.location, that.location); 217 } 218 return false; 219 } 220 221 @Override hashCode()222 public int hashCode() { 223 int h = 1; 224 h *= 1000003; 225 h ^= Objects.hashCode(fixedValue); 226 h *= 1000003; 227 h ^= Objects.hashCode(project); 228 h *= 1000003; 229 h ^= Objects.hashCode(answerRecord); 230 h *= 1000003; 231 h ^= Objects.hashCode(location); 232 return h; 233 } 234 235 /** Builder for projects/{project}/answerRecords/{answer_record}. */ 236 public static class Builder { 237 private String project; 238 private String answerRecord; 239 Builder()240 protected Builder() {} 241 getProject()242 public String getProject() { 243 return project; 244 } 245 getAnswerRecord()246 public String getAnswerRecord() { 247 return answerRecord; 248 } 249 setProject(String project)250 public Builder setProject(String project) { 251 this.project = project; 252 return this; 253 } 254 setAnswerRecord(String answerRecord)255 public Builder setAnswerRecord(String answerRecord) { 256 this.answerRecord = answerRecord; 257 return this; 258 } 259 Builder(AnswerRecordName answerRecordName)260 private Builder(AnswerRecordName answerRecordName) { 261 Preconditions.checkArgument( 262 Objects.equals(answerRecordName.pathTemplate, PROJECT_ANSWER_RECORD), 263 "toBuilder is only supported when AnswerRecordName has the pattern of projects/{project}/answerRecords/{answer_record}"); 264 this.project = answerRecordName.project; 265 this.answerRecord = answerRecordName.answerRecord; 266 } 267 build()268 public AnswerRecordName build() { 269 return new AnswerRecordName(this); 270 } 271 } 272 273 /** Builder for projects/{project}/locations/{location}/answerRecords/{answer_record}. */ 274 @BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.") 275 public static class ProjectLocationAnswerRecordBuilder { 276 private String project; 277 private String location; 278 private String answerRecord; 279 ProjectLocationAnswerRecordBuilder()280 protected ProjectLocationAnswerRecordBuilder() {} 281 getProject()282 public String getProject() { 283 return project; 284 } 285 getLocation()286 public String getLocation() { 287 return location; 288 } 289 getAnswerRecord()290 public String getAnswerRecord() { 291 return answerRecord; 292 } 293 setProject(String project)294 public ProjectLocationAnswerRecordBuilder setProject(String project) { 295 this.project = project; 296 return this; 297 } 298 setLocation(String location)299 public ProjectLocationAnswerRecordBuilder setLocation(String location) { 300 this.location = location; 301 return this; 302 } 303 setAnswerRecord(String answerRecord)304 public ProjectLocationAnswerRecordBuilder setAnswerRecord(String answerRecord) { 305 this.answerRecord = answerRecord; 306 return this; 307 } 308 build()309 public AnswerRecordName build() { 310 return new AnswerRecordName(this); 311 } 312 } 313 } 314