package org.graalvm.compiler.hotspot;
import java.util.*;
import org.graalvm.compiler.options.*;
import org.graalvm.compiler.options.OptionType;
public class HotSpotTTYStreamProvider_OptionDescriptors implements OptionDescriptors {
@Override
public OptionDescriptor get(String value) {
switch (value) {
case "LogFile": {
return OptionDescriptor.create(
"LogFile",
OptionType.Expert,
String.class,
"File to which logging is sent. A %p in the name will be replaced with a string identifying the process, usually the process id and %t will be replaced by System.currentTimeMillis().",
HotSpotTTYStreamProvider.Options.class,
"LogFile",
HotSpotTTYStreamProvider.Options.LogFile);
}
}
return null;
}
@Override
public Iterator<OptionDescriptor> iterator() {
return new Iterator<OptionDescriptor>() {
int i = 0;
@Override
public boolean hasNext() {
return i < 1;
}
@Override
public OptionDescriptor next() {
switch (i++) {
case 0: return get("LogFile");
}
throw new NoSuchElementException();
}
};
}
}