org.apache.olingo.commons.api.edm.geo.SRID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v4-lib Show documentation
Show all versions of odata-v4-lib Show documentation
Repackaged OData V4 Olingo Library
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.olingo.commons.api.edm.geo;
import java.io.Serializable;
import org.apache.olingo.commons.api.edm.geo.Geospatial.Dimension;
/**
* A geometry or geography property MAY define a value for the SRID attribute. The value of this attribute identifies
* which spatial reference system is applied to values of the property on type instances.
*
* The value of the SRID attribute MUST be a non-negative integer or the special value variable. If no value is
* specified, the attribute defaults to 0 for Geometry types or 4326 for Geography types.
*
* Standards Track Work Product Copyright © OASIS Open 2013. All Rights Reserved. 19 November 2013
*
* The valid values of the SRID attribute and their meanings are as defined by the
* European Petroleum Survey Group [EPSG].
*/
public final class SRID implements Serializable {
private static final long serialVersionUID = 8412685060902464629L;
private static final String VARIABLE = "variable";
private Dimension dimension = Dimension.GEOGRAPHY;
private Integer value;
private Boolean variable;
/**
* Creates a new SRID instance from a given value.
* @param exp Either "variable" or a numeric non-negative SRID value
* @return SRID instance
*/
public static SRID valueOf(final String exp) {
final SRID instance = new SRID();
if (VARIABLE.equalsIgnoreCase(exp)) {
instance.variable = Boolean.TRUE;
} else {
instance.value = Integer.valueOf(exp);
if (instance.value < 0) {
throw new IllegalArgumentException(
"The value of the SRID attribute MUST be a non-negative integer or the special value 'variable'");
}
}
return instance;
}
protected SRID() {
// empty constructor for package instantiation
}
/**
* Returns the dimension of the SRID instance.
* @return dimension of the SRID instance
*/
public Dimension getDimension() {
return dimension;
}
/**
* Sets the dimension of the SRID instance.
* @param dimension dimension of the SRID instance
*/
public void setDimension(final Dimension dimension) {
this.dimension = dimension;
}
private String getValue() {
return value == null ?
dimension == Dimension.GEOMETRY ? "0" : "4326" :
value.toString();
}
/**
* Returns true if the value of the instance is not equals to the default (uninitialized).
* @return true if the value of the instance is not equals to the default (uninitialized)
*/
public boolean isNotDefault() {
return value != null || variable != null;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SRID srid = (SRID) o;
if (dimension != srid.dimension) {
return false;
}
if (value != null ? !value.equals(srid.value) : srid.value != null) {
return false;
}
return !(variable != null ? !variable.equals(srid.variable) : srid.variable != null);
}
@Override
public int hashCode() {
int result = dimension != null ? dimension.hashCode() : 0;
result = 31 * result + (value != null ? value.hashCode() : 0);
result = 31 * result + (variable != null ? variable.hashCode() : 0);
return result;
}
@Override
public String toString() {
return variable != null && variable ? VARIABLE : getValue();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy