Tabnine Logo
ByteIterator.prev
Code IndexAdd Tabnine to your IDE (free)

How to use
prev
method
in
org.wildfly.security.util.ByteIterator

Best Java code snippets using org.wildfly.security.util.ByteIterator.prev (Showing top 20 results out of 315)

origin: wildfly/wildfly

public int prev() throws NoSuchElementException {
  return table[ByteIterator.this.prev()] & 0xff;
}
origin: wildfly/wildfly

public int prev() throws NoSuchElementException {
  return table[ByteIterator.this.prev()] & 0xff;
}
origin: wildfly/wildfly

public int prev() {
  if (offset == 0) {
    current = -1;
    throw new NoSuchElementException();
  }
  offset --;
  return current = ByteIterator.this.prev();
}
origin: wildfly/wildfly

public int prev() {
  if (offset == 0) {
    throw new NoSuchElementException();
  }
  offset --;
  return ByteIterator.this.prev();
}
origin: wildfly/wildfly

public int prev() {
  if (offset == 0) throw new NoSuchElementException();
  return ByteIterator.this.prev();
}
origin: wildfly/wildfly

public int prev() throws NoSuchElementException {
  if (! hasPrev()) throw new NoSuchElementException();
  if (lo) {
    lo = false;
    ByteIterator.this.prev();
    return hex(b >> 4);
  } else {
    b = ByteIterator.this.peekPrev();
    lo = true;
    return hex(b & 0xf);
  }
}
origin: wildfly/wildfly

switch (state) {
  case 0x21: {
    ByteIterator.this.prev(); // skip and fall through
    ByteIterator.this.prev(); // skip and fall through
    ByteIterator.this.prev(); // skip and fall through
    ByteIterator.this.prev(); // skip and fall through
    int b4 = ByteIterator.this.prev();
    int b3 = ByteIterator.this.prev();
    int b2 = ByteIterator.this.prev();
    int b1 = ByteIterator.this.prev();
    int b0 = ByteIterator.this.prev();
    c0 = calc0(b0);
    c1 = calc1(b0, b1);
origin: wildfly/wildfly

case 9:
case 0xf: {
  int b2 = ByteIterator.this.prev();
  int b1 = ByteIterator.this.prev();
  int b0 = ByteIterator.this.prev();
  c0 = calc0(b0);
  c1 = calc1(b0, b1);
origin: wildfly/wildfly

switch (state) {
  case 0x21:
    ByteIterator.this.prev(); // skip and fall through
  case 0x19:
    ByteIterator.this.prev(); // skip and fall through
  case 0x11:
    ByteIterator.this.prev(); // skip and fall through
  case 9:
    ByteIterator.this.prev(); // skip and fall through
  case 0:
  case 1:
origin: org.wildfly.security/wildfly-elytron

public int prev() throws NoSuchElementException {
  return table[ByteIterator.this.prev()] & 0xff;
}
origin: org.wildfly.security/wildfly-elytron

public int prev() throws NoSuchElementException {
  return table[ByteIterator.this.prev()] & 0xff;
}
origin: org.jboss.eap/wildfly-client-all

public int prev() throws NoSuchElementException {
  return table[ByteIterator.this.prev()] & 0xff;
}
origin: org.jboss.eap/wildfly-client-all

public int prev() {
  if (offset == 0) {
    throw new NoSuchElementException();
  }
  offset --;
  return ByteIterator.this.prev();
}
origin: org.wildfly.security/wildfly-elytron

public int prev() {
  if (offset == 0) {
    throw new NoSuchElementException();
  }
  offset --;
  return ByteIterator.this.prev();
}
origin: org.wildfly.security/wildfly-elytron

public int prev() {
  if (offset == 0) {
    current = -1;
    throw new NoSuchElementException();
  }
  offset --;
  return current = ByteIterator.this.prev();
}
origin: org.jboss.eap/wildfly-client-all

public int prev() {
  if (offset == 0) throw new NoSuchElementException();
  return ByteIterator.this.prev();
}
origin: org.jboss.eap/wildfly-client-all

public int prev() {
  if (offset == 0) {
    current = -1;
    throw new NoSuchElementException();
  }
  offset --;
  return current = ByteIterator.this.prev();
}
origin: org.wildfly.security/wildfly-elytron

public int prev() {
  if (offset == 0) throw new NoSuchElementException();
  return ByteIterator.this.prev();
}
origin: org.wildfly.security/wildfly-elytron

public int prev() throws NoSuchElementException {
  if (! hasPrev()) throw new NoSuchElementException();
  if (lo) {
    lo = false;
    ByteIterator.this.prev();
    return hex(b >> 4);
  } else {
    b = ByteIterator.this.peekPrev();
    lo = true;
    return hex(b & 0xf);
  }
}
origin: org.jboss.eap/wildfly-client-all

public int prev() throws NoSuchElementException {
  if (! hasPrev()) throw new NoSuchElementException();
  if (lo) {
    lo = false;
    ByteIterator.this.prev();
    return hex(b >> 4);
  } else {
    b = ByteIterator.this.peekPrev();
    lo = true;
    return hex(b & 0xf);
  }
}
org.wildfly.security.utilByteIteratorprev

Javadoc

Get the previous byte.

Popular methods of ByteIterator

  • asUtf8String
    Get this byte iterator as a UTF-8 string.
  • drain
    Drains up to len bytes from this iterator into the given dst array. An attempt is made to drain as m
  • ofBytes
    Get a byte iterator for a byte array with interleave.
  • appendTo
  • asLatin1String
    Get this byte iterator as a Latin-1 string.
  • base32Encode
    Base32-encode the current stream.
  • base64Encode
    Base64-encode the current stream.
  • drainTo
    Drain all the remaining bytes in this iterator to the given stream.
  • hasNext
    Determine if there are more bytes after the current byte.
  • hasPrev
    Determine if there are more bytes before the current byte.
  • hexEncode
    Hex-encode the current stream.
  • next
    Get the next byte.
  • hexEncode,
  • next,
  • offset,
  • peekNext,
  • peekPrev,
  • update,
  • hexDecode

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • runOnUiThread (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Collectors (java.util.stream)
  • JOptionPane (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • 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