Package org.apache.sis.internal.jaxb

Examples of org.apache.sis.internal.jaxb.IdentifierMapWithSpecialCases


        for (final Identifier identifier : identifiers) {
            if (identifier != null) {
                asList.add(identifier);
            }
        }
        attribute = new IdentifierMapWithSpecialCases(asList);
    }
View Full Code Here


        }
        /*
         * We do not cache (for now) the IdentifierMap because it is cheap to create, and if were
         * caching it we would need anyway to check if 'identifiers' still references the same list.
         */
        return new IdentifierMapWithSpecialCases(identifiers);
    }
View Full Code Here

        }
        /*
         * We do not cache (for now) the IdentifierMap because it is cheap to create, and if we were
         * caching it we would need anyway to check if 'identifiers' still references the same list.
         */
        return new IdentifierMapWithSpecialCases(identifiers);
    }
View Full Code Here

     * <var>code</var>) entries. That map is <cite>live</cite>: changes in the identifiers list will be reflected
     * in the map, and conversely.
     */
    @Override
    public IdentifierMap getIdentifierMap() {
        return new IdentifierMapWithSpecialCases(getIdentifiers());
    }
View Full Code Here

        private final IdentifierMap map;

        /** Creates a new instance with initially no identifier. */
        Value() {
            identifiers = new ArrayList<Identifier>();
            map = new IdentifierMapWithSpecialCases(identifiers);
        }
View Full Code Here

        for (final Identifier identifier : identifiers) {
            if (identifier != null) {
                asList.add(identifier);
            }
        }
        attribute = new IdentifierMapWithSpecialCases(asList);
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.internal.jaxb.IdentifierMapWithSpecialCases

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.