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 io.grafeas.v1; 18 19 import com.google.api.pathtemplate.PathTemplate; 20 import com.google.api.resourcenames.ResourceName; 21 import com.google.common.base.Preconditions; 22 import com.google.common.collect.ImmutableMap; 23 import java.util.ArrayList; 24 import java.util.List; 25 import java.util.Map; 26 import java.util.Objects; 27 import javax.annotation.Generated; 28 29 // AUTO-GENERATED DOCUMENTATION AND CLASS. 30 @Generated("by gapic-generator-java") 31 public class NoteName implements ResourceName { 32 private static final PathTemplate PROJECT_NOTE = 33 PathTemplate.createWithoutUrlEncoding("projects/{project}/notes/{note}"); 34 private volatile Map<String, String> fieldValuesMap; 35 private final String project; 36 private final String note; 37 38 @Deprecated NoteName()39 protected NoteName() { 40 project = null; 41 note = null; 42 } 43 NoteName(Builder builder)44 private NoteName(Builder builder) { 45 project = Preconditions.checkNotNull(builder.getProject()); 46 note = Preconditions.checkNotNull(builder.getNote()); 47 } 48 getProject()49 public String getProject() { 50 return project; 51 } 52 getNote()53 public String getNote() { 54 return note; 55 } 56 newBuilder()57 public static Builder newBuilder() { 58 return new Builder(); 59 } 60 toBuilder()61 public Builder toBuilder() { 62 return new Builder(this); 63 } 64 of(String project, String note)65 public static NoteName of(String project, String note) { 66 return newBuilder().setProject(project).setNote(note).build(); 67 } 68 format(String project, String note)69 public static String format(String project, String note) { 70 return newBuilder().setProject(project).setNote(note).build().toString(); 71 } 72 parse(String formattedString)73 public static NoteName parse(String formattedString) { 74 if (formattedString.isEmpty()) { 75 return null; 76 } 77 Map<String, String> matchMap = 78 PROJECT_NOTE.validatedMatch( 79 formattedString, "NoteName.parse: formattedString not in valid format"); 80 return of(matchMap.get("project"), matchMap.get("note")); 81 } 82 parseList(List<String> formattedStrings)83 public static List<NoteName> parseList(List<String> formattedStrings) { 84 List<NoteName> list = new ArrayList<>(formattedStrings.size()); 85 for (String formattedString : formattedStrings) { 86 list.add(parse(formattedString)); 87 } 88 return list; 89 } 90 toStringList(List<NoteName> values)91 public static List<String> toStringList(List<NoteName> values) { 92 List<String> list = new ArrayList<>(values.size()); 93 for (NoteName value : values) { 94 if (value == null) { 95 list.add(""); 96 } else { 97 list.add(value.toString()); 98 } 99 } 100 return list; 101 } 102 isParsableFrom(String formattedString)103 public static boolean isParsableFrom(String formattedString) { 104 return PROJECT_NOTE.matches(formattedString); 105 } 106 107 @Override getFieldValuesMap()108 public Map<String, String> getFieldValuesMap() { 109 if (fieldValuesMap == null) { 110 synchronized (this) { 111 if (fieldValuesMap == null) { 112 ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder(); 113 if (project != null) { 114 fieldMapBuilder.put("project", project); 115 } 116 if (note != null) { 117 fieldMapBuilder.put("note", note); 118 } 119 fieldValuesMap = fieldMapBuilder.build(); 120 } 121 } 122 } 123 return fieldValuesMap; 124 } 125 getFieldValue(String fieldName)126 public String getFieldValue(String fieldName) { 127 return getFieldValuesMap().get(fieldName); 128 } 129 130 @Override toString()131 public String toString() { 132 return PROJECT_NOTE.instantiate("project", project, "note", note); 133 } 134 135 @Override equals(Object o)136 public boolean equals(Object o) { 137 if (o == this) { 138 return true; 139 } 140 if (o != null || getClass() == o.getClass()) { 141 NoteName that = ((NoteName) o); 142 return Objects.equals(this.project, that.project) && Objects.equals(this.note, that.note); 143 } 144 return false; 145 } 146 147 @Override hashCode()148 public int hashCode() { 149 int h = 1; 150 h *= 1000003; 151 h ^= Objects.hashCode(project); 152 h *= 1000003; 153 h ^= Objects.hashCode(note); 154 return h; 155 } 156 157 /** Builder for projects/{project}/notes/{note}. */ 158 public static class Builder { 159 private String project; 160 private String note; 161 Builder()162 protected Builder() {} 163 getProject()164 public String getProject() { 165 return project; 166 } 167 getNote()168 public String getNote() { 169 return note; 170 } 171 setProject(String project)172 public Builder setProject(String project) { 173 this.project = project; 174 return this; 175 } 176 setNote(String note)177 public Builder setNote(String note) { 178 this.note = note; 179 return this; 180 } 181 Builder(NoteName noteName)182 private Builder(NoteName noteName) { 183 this.project = noteName.project; 184 this.note = noteName.note; 185 } 186 build()187 public NoteName build() { 188 return new NoteName(this); 189 } 190 } 191 } 192