Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 jdk.compiler.jmod - Compiler Tool
JDK 17 jdk.compiler.jmod is the JMOD file for JDK 17 Compiler tool,
which can be invoked by the "javac" command.
JDK 17 Compiler tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.compiler.jmod.
JDK 17 Compiler tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Compiler source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.compiler.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/tools/javac/util/Options.java
/*
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.sun.tools.javac.util;
import java.util.*;
import com.sun.tools.javac.main.Option;
import static com.sun.tools.javac.main.Option.*;
/** A table of all command-line options.
* If an option has an argument, the option name is mapped to the argument.
* If a set option has no argument, it is mapped to itself.
*
* <p><b>This is NOT part of any supported API.
* If you write code that depends on this, you do so at your own risk.
* This code and its internal interfaces are subject to change or
* deletion without notice.</b>
*/
public class Options {
private static final long serialVersionUID = 0;
/** The context key for the options. */
public static final Context.Key<Options> optionsKey = new Context.Key<>();
private LinkedHashMap<String,String> values;
/** Get the Options instance for this context. */
public static Options instance(Context context) {
Options instance = context.get(optionsKey);
if (instance == null)
instance = new Options(context);
return instance;
}
protected Options(Context context) {
// DEBUGGING -- Use LinkedHashMap for reproducibility
values = new LinkedHashMap<>();
context.put(optionsKey, this);
}
/**
* Get the value for an undocumented option.
*/
public String get(String name) {
return values.get(name);
}
/**
* Get the value for an option.
*/
public String get(Option option) {
return values.get(option.primaryName);
}
/**
* Get the boolean value for an option, patterned after Boolean.getBoolean,
* essentially will return true, iff the value exists and is set to "true".
*/
public boolean getBoolean(String name) {
return getBoolean(name, false);
}
/**
* Get the boolean with a default value if the option is not set.
*/
public boolean getBoolean(String name, boolean defaultValue) {
String value = get(name);
return (value == null) ? defaultValue : Boolean.parseBoolean(value);
}
/**
* Check if the value for an undocumented option has been set.
*/
public boolean isSet(String name) {
return (values.get(name) != null);
}
/**
* Check if the value for an option has been set.
*/
public boolean isSet(Option option) {
return (values.get(option.primaryName) != null);
}
/**
* Check if the value for a choice option has been set to a specific value.
*/
public boolean isSet(Option option, String value) {
return (values.get(option.primaryName + value) != null);
}
/** Check if the value for a lint option has been explicitly set, either with -Xlint:opt
* or if all lint options have enabled and this one not disabled with -Xlint:-opt.
*/
public boolean isLintSet(String s) {
// return true if either the specific option is enabled, or
// they are all enabled without the specific one being
// disabled
return
isSet(XLINT_CUSTOM, s) ||
(isSet(XLINT) || isSet(XLINT_CUSTOM, "all")) && isUnset(XLINT_CUSTOM, "-" + s);
}
/**
* Check if the value for an undocumented option has not been set.
*/
public boolean isUnset(String name) {
return (values.get(name) == null);
}
/**
* Check if the value for an option has not been set.
*/
public boolean isUnset(Option option) {
return (values.get(option.primaryName) == null);
}
/**
* Check if the value for a choice option has not been set to a specific value.
*/
public boolean isUnset(Option option, String value) {
return (values.get(option.primaryName + value) == null);
}
public void put(String name, String value) {
values.put(name, value);
}
public void put(Option option, String value) {
values.put(option.primaryName, value);
}
public void putAll(Options options) {
values.putAll(options.values);
}
public void remove(String name) {
values.remove(name);
}
public Set<String> keySet() {
return values.keySet();
}
public int size() {
return values.size();
}
// light-weight notification mechanism
private List<Runnable> listeners = List.nil();
public void addListener(Runnable listener) {
listeners = listeners.prepend(listener);
}
public void notifyListeners() {
for (Runnable r: listeners)
r.run();
}
public void clear() {
values.clear();
listeners = List.nil();
}
}
⏎ com/sun/tools/javac/util/Options.java
Or download all of them as a single archive file:
File name: jdk.compiler-17.0.5-src.zip File size: 1450209 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.crypto.cryptoki.jmod - Crypto KI Module
2023-10-15, ≈132🔥, 0💬
Popular Posts:
JDK 17 jdk.incubator.foreign.jm odis the JMOD file for JDK 17 HTTP Server module. JDK 17 Incubator F...
What Is poi-5.2.3.jar? poi-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...