congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
KeyInfo$Builder
Code IndexAdd Tabnine 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)

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 removability flag.
 *
 * @since 0.32
 */
public Builder setRemovable(boolean removable) {
  setBit(5, removable);
  return this;
}
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 readability flag.
 *
 * @since 0.26
 */
public Builder setReadable(boolean readable) {
  setBit(1, 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: org.graalvm.truffle/truffle-api

/**
 * Set readability flag.
 *
 * @since 0.26
 */
public Builder setReadable(boolean readable) {
  setBit(1, 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 writability flag.
 *
 * @since 0.26
 */
public Builder setWritable(boolean readable) {
  setBit(2, readable);
  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

/**
 * @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 invocability flag.
 *
 * @since 0.26
 */
public Builder setInvocable(boolean readable) {
  setBit(3, readable);
  return this;
}
origin: org.graalvm.truffle/truffle-api

/**
 * Set removability flag.
 *
 * @since 0.32
 */
public Builder setRemovable(boolean removable) {
  setBit(5, removable);
  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

  • Running tasks concurrently on multiple threads
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • compareTo (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Runner (org.openjdk.jmh.runner)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now