org.hibernate.mapping.MetaAttribute Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of hibernate-core Show documentation
                Show all versions of hibernate-core Show documentation
The core O/RM functionality as provided by Hibernate
                
             The newest version!
        
        /*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.mapping;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
/**
 * A meta attribute is a named value or values.
 *
 * @author Gavin King
 */
public class MetaAttribute implements Serializable {
	private String name;
	private java.util.List values = new ArrayList();
	public MetaAttribute(String name) {
		this.name = name;
	}
	
	public String getName() {
		return name;
	}	
	public java.util.List getValues() {
		return Collections.unmodifiableList(values);
	}
	public void addValue(String value) {
		values.add(value);
	}
	public String getValue() {
		if ( values.size()!=1 ) {
			throw new IllegalStateException("no unique value");
		}
		return (String) values.get(0);
	}
	public boolean isMultiValued() {
		return values.size()>1;
	}
	public String toString() {
		return "[" + name + "=" + values + "]";
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy