com.oracle.svm.util.ImageBuildStatistics_OptionDescriptors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of native-image-base Show documentation
Show all versions of native-image-base Show documentation
Native Image base that can be shared by native image building and pointsto.
The newest version!
// CheckStyle: stop header check
// CheckStyle: stop line length check
// GENERATED CONTENT - DO NOT EDIT
// Source: ImageBuildStatistics.java
package com.oracle.svm.util;
import java.util.*;
import jdk.graal.compiler.options.*;
import jdk.graal.compiler.options.OptionType;
import jdk.graal.compiler.options.OptionStability;
public class ImageBuildStatistics_OptionDescriptors implements OptionDescriptors {
@Override
public OptionDescriptor get(String value) {
switch (value) {
// CheckStyle: stop line length check
case "CollectImageBuildStatistics": {
return OptionDescriptor.create(
/*name*/ "CollectImageBuildStatistics",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Collect information during image build about devirtualized invokes and bytecode exceptions.",
/*declaringClass*/ ImageBuildStatistics.Options.class,
/*fieldName*/ "CollectImageBuildStatistics",
/*option*/ ImageBuildStatistics.Options.CollectImageBuildStatistics,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
// 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("CollectImageBuildStatistics");
}
throw new NoSuchElementException();
}
};
}
}