Java Bit Shift shiftCharacter(char c, int offset)

Here you can find the source of shiftCharacter(char c, int offset)

Description

shift Character

License

Apache License

Declaration

public static char shiftCharacter(char c, int offset) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static char shiftCharacter(char c, int offset) {
        return (char) (c + offset);
    }//from ww  w  .ja  v  a2s.c o  m
}

Related

  1. shift(int direction, long sq, int delta)
  2. shift(int length)
  3. shift(String string)
  4. shiftBits(byte b)
  5. shiftByte(byte n, short shift)
  6. shiftDouble(Object o, double shift, String suffix)
  7. shiftHorizontally(int inkX, int inkXWidth, int textWidth)
  8. shiftIdentifier(StringBuffer buffer, int posBegin, int posEnd)
  9. shiftKeyword(StringBuffer buffer, int posBegin, int posEnd, String keyword, boolean ignoreCase, boolean wholeWord)