All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.svm.graal.SubstrateGraalUtils_OptionDescriptors Maven / Gradle / Ivy

There is a newer version: 19.2.1
Show newest version
// CheckStyle: stop header check
// CheckStyle: stop line length check
// GENERATED CONTENT - DO NOT EDIT
// Source: SubstrateGraalUtils.java
package com.oracle.svm.graal;

import java.util.*;
import org.graalvm.compiler.options.*;
import org.graalvm.compiler.options.OptionType;

public class SubstrateGraalUtils_OptionDescriptors implements OptionDescriptors {
    @Override
    public OptionDescriptor get(String value) {
        switch (value) {
        // CheckStyle: stop line length check
        case "ForceDumpGraphsBeforeCompilation": {
            return OptionDescriptor.create(
                /*name*/ "ForceDumpGraphsBeforeCompilation",
                /*optionType*/ OptionType.Debug,
                /*optionValueType*/ Boolean.class,
                /*help*/ "Force-dump graphs before compilation",
                /*declaringClass*/ SubstrateGraalUtils.Options.class,
                /*fieldName*/ "ForceDumpGraphsBeforeCompilation",
                /*option*/ SubstrateGraalUtils.Options.ForceDumpGraphsBeforeCompilation);
        }
        // CheckStyle: resume line length check
        }
        return null;
    }

    @Override
    public Iterator iterator() {
        return new Iterator() {
            int i = 0;
            @Override
            public boolean hasNext() {
                return i < 1;
            }
            @Override
            public OptionDescriptor next() {
                switch (i++) {
                    case 0: return get("ForceDumpGraphsBeforeCompilation");
                }
                throw new NoSuchElementException();
            }
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy