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

com.ellucian.generated.eedm.educational_institutions.v6_0.StandardizedCode Maven / Gradle / Ivy


package com.ellucian.generated.eedm.educational_institutions.v6_0;

import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "country"
})
@Generated("jsonschema2pojo")
public class StandardizedCode {

    /**
     * Country
     * 

* The country with specific educational institution codes * */ @JsonProperty("country") @JsonPropertyDescription("The country with specific educational institution codes") private Object country; /** * Country *

* The country with specific educational institution codes * */ @JsonProperty("country") public Object getCountry() { return country; } /** * Country *

* The country with specific educational institution codes * */ @JsonProperty("country") public void setCountry(Object country) { this.country = country; } public StandardizedCode withCountry(Object country) { this.country = country; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(StandardizedCode.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("country"); sb.append('='); sb.append(((this.country == null)?"":this.country)); sb.append(','); if (sb.charAt((sb.length()- 1)) == ',') { sb.setCharAt((sb.length()- 1), ']'); } else { sb.append(']'); } return sb.toString(); } @Override public int hashCode() { int result = 1; result = ((result* 31)+((this.country == null)? 0 :this.country.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof StandardizedCode) == false) { return false; } StandardizedCode rhs = ((StandardizedCode) other); return ((this.country == rhs.country)||((this.country!= null)&&this.country.equals(rhs.country))); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy