All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.swagger.v3.oas.models.examples.Example Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/**
 * Copyright 2017 SmartBear Software
 * 

* 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 io.swagger.v3.oas.models.examples; /** * Example */ public class Example { private String summary = null; private String description = null; private Object value = null; private String externalValue = null; private String $ref = null; private java.util.Map extensions = null; /** * returns the summary property from a Example instance. * * @return String summary **/ public String getSummary() { return summary; } public void setSummary(String summary) { this.summary = summary; } public Example summary(String summary) { this.summary = summary; return this; } /** * returns the description property from a Example instance. * * @return String description **/ public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Example description(String description) { this.description = description; return this; } /** * returns the value property from a Example instance. * * @return Object value **/ public Object getValue() { return value; } public void setValue(Object value) { this.value = value; } public Example value(Object value) { this.value = value; return this; } /** * returns the externalValue property from a Example instance. * * @return String externalValue **/ public String getExternalValue() { return externalValue; } public void setExternalValue(String externalValue) { this.externalValue = externalValue; } public Example externalValue(String externalValue) { this.externalValue = externalValue; return this; } public String get$ref() { return $ref; } public void set$ref(String $ref) { if ($ref != null && ($ref.indexOf('.') == -1 && $ref.indexOf('/') == -1)) { $ref = "#/components/examples/" + $ref; } this.$ref = $ref; } public Example $ref(String $ref) { set$ref($ref); return this; } public java.util.Map getExtensions() { return extensions; } public void addExtension(String name, Object value) { if (name == null || name.isEmpty() || !name.startsWith("x-")) { return; } if (this.extensions == null) { this.extensions = new java.util.LinkedHashMap<>(); } this.extensions.put(name, value); } public void setExtensions(java.util.Map extensions) { this.extensions = extensions; } public Example extensions(java.util.Map extensions) { this.extensions = extensions; return this; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Example)) { return false; } Example example = (Example) o; if (summary != null ? !summary.equals(example.summary) : example.summary != null) { return false; } if (description != null ? !description.equals(example.description) : example.description != null) { return false; } if (value != null ? !value.equals(example.value) : example.value != null) { return false; } if (externalValue != null ? !externalValue.equals(example.externalValue) : example.externalValue != null) { return false; } if ($ref != null ? !$ref.equals(example.$ref) : example.$ref != null) { return false; } return extensions != null ? extensions.equals(example.extensions) : example.extensions == null; } @Override public int hashCode() { int result = summary != null ? summary.hashCode() : 0; result = 31 * result + (description != null ? description.hashCode() : 0); result = 31 * result + (value != null ? value.hashCode() : 0); result = 31 * result + (externalValue != null ? externalValue.hashCode() : 0); result = 31 * result + ($ref != null ? $ref.hashCode() : 0); result = 31 * result + (extensions != null ? extensions.hashCode() : 0); return result; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Example {\n"); sb.append(" summary: ").append(toIndentedString(summary)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" value: ").append(toIndentedString(value)).append("\n"); sb.append(" externalValue: ").append(toIndentedString(externalValue)).append("\n"); sb.append(" $ref: ").append(toIndentedString($ref)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(java.lang.Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy