Package org.axsl.common.value

Examples of org.axsl.common.value.LinefeedTreatment


     * {@code charArray} is returned. Otherwise, a new char array with the
     * result is returned.
     */
    public static CharVector applyLinefeedTreatment(final CharVector charArray,
            final LinefeedTreatment inputLinefeedTreatment) {
        LinefeedTreatment linefeedTreatment = inputLinefeedTreatment;
        switch (linefeedTreatment) {
        case PRESERVE: {
            return charArray;
        }
        case IGNORE:
View Full Code Here

TOP

Related Classes of org.axsl.common.value.LinefeedTreatment

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.