Package org.apache.sis.measure

Examples of org.apache.sis.measure.ValueRange


        ExtendedElementInformation information = informations[index];
        if (information == null) {
            final Class<?> elementType = elementTypes[index];
            final String   name        = name(index, KeyNamePolicy.UML_IDENTIFIER);
            final Method   getter      = getters[index];
            ValueRange range = null;
            if (implementation != type) {
                final int e = Numbers.getEnumConstant(elementType);
                if (e >= Numbers.BYTE && e <= Numbers.DOUBLE) try {
                    range = implementation.getMethod(getter.getName(), (Class<?>[]) null)
                            .getAnnotation(ValueRange.class);
View Full Code Here


        ExtendedElementInformation information = informations[index];
        if (information == null) {
            final Class<?> elementType = elementTypes[index];
            final String   name        = name(index, KeyNamePolicy.UML_IDENTIFIER);
            final Method   getter      = getters[index];
            ValueRange range = null;
            if (implementation != type) {
                final int e = Numbers.getEnumConstant(elementType);
                if (e >= Numbers.BYTE && e <= Numbers.DOUBLE) try {
                    range = implementation.getMethod(getter.getName(), (Class<?>[]) null)
                            .getAnnotation(ValueRange.class);
View Full Code Here

TOP

Related Classes of org.apache.sis.measure.ValueRange

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.