Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextPropertyName (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                if (idx <= start || idx >= expression.length()) {
                    return null;
                }
    
                return expression.substring(start, idx++);
            }
    
            public String nextPropertyName() {
                final int start = idx;
    
                while (idx < expression.length() && Character.isJavaIdentifierPart(expression.charAt(idx))) {
                    idx++;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top