Codota Logo
KeyInfo$Builder
Code IndexAdd Codota to your IDE (free)

How to use
KeyInfo$Builder
in
com.oracle.truffle.api.interop

Best Java code snippets using com.oracle.truffle.api.interop.KeyInfo$Builder (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: org.graalvm.truffle/truffle-api

/**
 * @since 0.26
 * @deprecated in 0.33 use integer constants in {@link KeyInfo} instead. For example
 *             <code> KeyInfo.newBuilder().setWritable(true).setReadable(true).build()</code>
 *             becomes <code>
 *             {@link #READABLE READABLE} | {@link #MODIFIABLE MODIFIABLE} | {@link #INSERTABLE
 *             INSERTABLE}</code>
 */
@Deprecated
public static Builder newBuilder() {
  return new KeyInfo().new Builder();
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set removability flag.
 *
 * @since 0.32
 */
public Builder setRemovable(boolean removable) {
  setBit(5, removable);
  return this;
}
origin: com.oracle.truffle/truffle-api

/**
 * Set writability flag.
 *
 * @since 0.26
 */
public Builder setWritable(boolean readable) {
  setBit(2, readable);
  return this;
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set writability flag.
 *
 * @since 0.26
 */
public Builder setWritable(boolean readable) {
  setBit(2, readable);
  return this;
}
origin: com.oracle.truffle/truffle-api

/**
 * Set invocability flag.
 *
 * @since 0.26
 */
public Builder setInvocable(boolean readable) {
  setBit(3, readable);
  return this;
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set invocability flag.
 *
 * @since 0.26
 */
public Builder setInvocable(boolean readable) {
  setBit(3, readable);
  return this;
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set internal attribute flag.
 *
 * @since 0.26
 */
public Builder setInternal(boolean readable) {
  setBit(4, readable);
  return this;
}
origin: com.oracle.truffle/truffle-api

/**
 * @since 0.26
 * @deprecated in 0.33 use integer constants in {@link KeyInfo} instead. For example
 *             <code> KeyInfo.newBuilder().setWritable(true).setReadable(true).build()</code>
 *             becomes <code>
 *             {@link #READABLE READABLE} | {@link #MODIFIABLE MODIFIABLE} | {@link #INSERTABLE
 *             INSERTABLE}</code>
 */
@Deprecated
public static Builder newBuilder() {
  return new KeyInfo().new Builder();
}
origin: com.oracle.truffle/truffle-api

/**
 * Set internal attribute flag.
 *
 * @since 0.26
 */
public Builder setInternal(boolean readable) {
  setBit(4, readable);
  return this;
}
origin: com.oracle.truffle/truffle-api

/**
 * Set removability flag.
 *
 * @since 0.32
 */
public Builder setRemovable(boolean removable) {
  setBit(5, removable);
  return this;
}
origin: com.oracle.truffle/truffle-api

/**
 * Set readability flag.
 *
 * @since 0.26
 */
public Builder setReadable(boolean readable) {
  setBit(1, readable);
  return this;
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set readability flag.
 *
 * @since 0.26
 */
public Builder setReadable(boolean readable) {
  setBit(1, readable);
  return this;
}
com.oracle.truffle.api.interopKeyInfo$Builder

Javadoc

A builder of bit flags. An instance of this class can be reused for multiple key info bits #build().

Most used methods

  • <init>
  • setBit

Popular in Java

  • Making http post requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • putExtra (Intent)
  • addToBackStack (FragmentTransaction)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • IOException (java.io)
    Signals that an I/O exception of some sort has occurred. This class is the general class of exceptio
  • Path (java.nio.file)
  • Notification (javax.management)
  • JComboBox (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now