
com.sun.tools.xjc.reader.xmlschema.bindinfo.BIEnum Maven / Gradle / Ivy
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://jwsdp.dev.java.net/CDDLv1.0.html
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
* add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your
* own identifying information: Portions Copyright [yyyy]
* [name of copyright owner]
*/
package com.sun.tools.xjc.reader.xmlschema.bindinfo;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.namespace.QName;
import com.sun.tools.xjc.reader.Const;
import com.sun.tools.xjc.reader.xmlschema.SimpleTypeBuilder;
/**
* Enumeration customization.
*
* This customization binds a simple type to a type-safe enum class.
* The actual binding process takes place in {@link SimpleTypeBuilder}.
*
*
* This customization is acknowledged by {@link SimpleTypeBuilder}.
*
* @author
* Kohsuke Kawaguchi ([email protected])
*/
@XmlRootElement(name="typesafeEnumClass")
public final class BIEnum extends AbstractDeclarationImpl {
/**
* If false, it means not to bind to a type-safe enum.
*
* this takes precedence over all the other properties of this class.
*/
@XmlAttribute(name="map")
private boolean map = true;
/** Gets the specified class name, or null if not specified. */
@XmlAttribute(name="name")
public final String className = null;
/**
* Gets the javadoc comment specified in the customization.
* Can be null if none is specified.
*/
@XmlElement
public final String javadoc = null;
public boolean isMapped() {
return map;
}
/**
* Gets the map that contains XML value->BIEnumMember pairs.
* This table is built from <enumMember> customizations.
*
* Always return non-null.
*/
@XmlTransient
public final Map members = new HashMap();
public QName getName() { return NAME; }
public void setParent(BindInfo p) {
super.setParent(p);
for( BIEnumMember mem : members.values() )
mem.setParent(p);
}
/** Name of this declaration. */
public static final QName NAME = new QName(
Const.JAXB_NSURI, "enum" );
// setter method for JAXB runtime
@XmlElement(name="typesafeEnumMember")
private void setMembers(BIEnumMember2[] mems) {
for (BIEnumMember2 e : mems)
members.put(e.value,e);
}
/**
* {@link BIEnumMember} used inside {@link BIEnum} has additional 'value' attribute.
*/
static class BIEnumMember2 extends BIEnumMember {
/**
* The lexical representaion of the constant to which we are attaching.
*/
@XmlAttribute(required=true)
String value;
}
}