com.googlecode.jmapper.xml.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmapper-core Show documentation
Show all versions of jmapper-core Show documentation
JMapper Framework is a java bean mapper based on javassist. JMapper exposes
interesting features as relational mapping, dynamic conversions and more
/**
* Copyright (C) 2012 - 2016 Alessandro Vurro.
*
* 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 com.googlecode.jmapper.xml;
import java.util.Arrays;
import com.googlecode.jmapper.config.Constants;
/**
* This Class is a java bean that represents the JMap annotation.
*
* @author Alessandro Vurro
*
*/
public class Attribute {
private String name;
private Value value;
private String get;
private String set;
private SimplyAttribute[] attributes;
private Class>[] classes;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Value getValue() {
return value;
}
public void setValue(Value value) {
this.value = value;
}
public String getGet() {
return get;
}
public void setGet(String get) {
this.get = get;
}
public String getSet() {
return set;
}
public void setSet(String set) {
this.set = set;
}
public SimplyAttribute[] getAttributes() {
return attributes;
}
public void setAttributes(SimplyAttribute[] attributes) {
this.attributes = attributes;
}
public Class>[] getClasses() {
return classes;
}
public void setClasses(Class>[] classes) {
this.classes = classes;
}
/**
* Giving only the field name, JMapper assumes that the name of the target field is equal.
* @param name attribute name
*/
public Attribute(String name){
this(name,new Value(Constants.DEFAULT_FIELD_VALUE));
}
/**
* This constructor allows you to define the configured field name and target field name.
* @param name configured field name
* @param value target field
*/
public Attribute(String name, Value value) {
this.name = name;
this.value = value;
}
/**
* This constructor allows you to define the configured field name, the attributes and the classes.
* @param name configured field name
* @param attributes target attributes
* @param classes target classes
*/
public Attribute(String name,SimplyAttribute[] attributes, Class>[] classes) {
this(name,attributes);
this.classes = classes;
}
/**
* This constructor allows you to define the configured field name, the target field name, the attributes and the classes.
* @param name configured field name
* @param value target field
* @param attributes target attributes
* @param classes target classes
*/
public Attribute(String name, Value value, SimplyAttribute[] attributes,Class>[] classes) {
this(name,attributes,classes);
this.value = value;
}
/**
* This constructor allows you to define the configured field name, the target field name, get and set custom for this field, the attributes and the classes.
* @param name configured field name
* @param value target field
* @param get get custom for this attribute
* @param set set custom for this attribute
* @param attributes target attributes
* @param classes target classes
*/
public Attribute(String name, Value value, String get, String set, SimplyAttribute[] attributes, Class>[] classes) {
this(name, value, attributes, classes);
this.get = get;
this.set = set;
}
/**
* This constructor allows you to define the configured field name and the attributes.
* @param name configured field name
* @param attributes target attributes
*/
public Attribute(String name, SimplyAttribute[] attributes) {
this.name = name;
this.attributes = attributes;
}
/**
* Empty constructor
*/
public Attribute() {}
@Override
public String toString() {
return "Attribute [name=" + name + ", value=" + value + ", attributes="
+ Arrays.toString(attributes) + ", classes="
+ Arrays.toString(classes) + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + Arrays.hashCode(attributes);
result = prime * result + Arrays.hashCode(classes);
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + ((value == null) ? 0 : value.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Attribute other = (Attribute) obj;
if (!Arrays.equals(attributes, other.attributes))
return false;
if (!Arrays.equals(classes, other.classes))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (value == null) {
if (other.value != null)
return false;
} else if (!value.equals(other.value))
return false;
return true;
}
}