Package org.opengis.feature.type

Examples of org.opengis.feature.type.AttributeType


    if (m_BaseDataObject != null) {
      try {

        SimpleFeatureType ft = getFeatureSource().getSchema();
        AttributeType at = ft.getType(i + 1);
        return at.getName().getLocalPart();
      } catch (Exception e) {
        e.printStackTrace();
        return null;
      }
    }
View Full Code Here


  public Class<?> getFieldType(int i) {

    if (m_BaseDataObject != null) {
      try {
        SimpleFeatureType ft = getFeatureSource().getSchema();
        AttributeType at = ft.getType(i + 1);
        return at.getBinding();
      } catch (Exception e) {
        e.printStackTrace();
        return null;
      }
    }
View Full Code Here

     * @generated
     */
    public static final AttributeType INTEGERORNILREASON_TYPE = build_INTEGERORNILREASON_TYPE();
    
    private static AttributeType build_INTEGERORNILREASON_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","integerOrNilReason"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.ANYSIMPLETYPE_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType INTEGERORNILREASONLIST_TYPE = build_INTEGERORNILREASONLIST_TYPE();
    
    private static AttributeType build_INTEGERORNILREASONLIST_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","integerOrNilReasonList"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.ANYSIMPLETYPE_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType STRINGORNILREASON_TYPE = build_STRINGORNILREASON_TYPE();
    
    private static AttributeType build_STRINGORNILREASON_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","stringOrNilReason"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.ANYSIMPLETYPE_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType ABSTRACTGEOMETRYTYPE_TYPE = build_ABSTRACTGEOMETRYTYPE_TYPE();
    
    private static AttributeType build_ABSTRACTGEOMETRYTYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","AbstractGeometryType"),
                com.vividsolutions.jts.geom.Geometry.class, false, true, null, null) {
            @Override
            public AttributeType buildSuper() {
                return ABSTRACTGMLTYPE_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType AGGREGATIONTYPE_TYPE = build_AGGREGATIONTYPE_TYPE();
    
    private static AttributeType build_AGGREGATIONTYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","AggregationType"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.STRING_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType ARCMINUTESTYPE_TYPE = build_ARCMINUTESTYPE_TYPE();
    
    private static AttributeType build_ARCMINUTESTYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","ArcMinutesType"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.NONNEGATIVEINTEGER_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType ARCSECONDSTYPE_TYPE = build_ARCSECONDSTYPE_TYPE();
    
    private static AttributeType build_ARCSECONDSTYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","ArcSecondsType"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.DECIMAL_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType AXISDIRECTION_TYPE = build_AXISDIRECTION_TYPE();
    
    private static AttributeType build_AXISDIRECTION_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.opengis.net/gml/3.2","AxisDirection"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.STRING_TYPE;
View Full Code Here

TOP

Related Classes of org.opengis.feature.type.AttributeType

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.