Package org.jboss.metatype.api.types

Examples of org.jboss.metatype.api.types.Name


         String v2 = String.class.cast(sv.getValue());
         compare = v1.compareTo(v2);
      }
      else if(getMetaType() == SimpleMetaType.NAMEDOBJECT && sv.getMetaType() == SimpleMetaType.NAMEDOBJECT)
      {
         Name v1 = Name.class.cast(value);
         Name v2 = Name.class.cast(sv.getValue());
         compare = v1.compareTo(v2);
      }
      else if(getMetaType() == SimpleMetaType.VOID && sv.getMetaType() == SimpleMetaType.VOID)
      {
         compare = 0;
View Full Code Here

TOP

Related Classes of org.jboss.metatype.api.types.Name

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.