Package com.facebook.swift.parser.model

Examples of com.facebook.swift.parser.model.IntegerEnumField


        int lastFieldIndex = size() - 1;
        if (lastFieldIndex < 0) {
            // No previous values to derive from, and thrift enumerations start at zero by default
            return 0;
        }
        IntegerEnumField lastField = get(lastFieldIndex);
        return lastField.getValue() + 1;
    }
View Full Code Here

TOP

Related Classes of com.facebook.swift.parser.model.IntegerEnumField

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.