All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.jooby.internal.apt.escape.CodePointTranslator Maven / Gradle / Ivy

There is a newer version: 3.5.3
Show newest version
/*
 * Jooby https://jooby.io
 * Apache License Version 2.0 https://jooby.io/LICENSE.txt
 * Copyright 2014 Edgar Espina
 */
package io.jooby.internal.apt.escape;

import java.io.IOException;
import java.io.Writer;

/**
 * Helper subclass to CharSequenceTranslator to allow for translations that will replace up to one
 * character at a time.
 *
 * @since 1.0
 */
abstract class CodePointTranslator extends CharSequenceTranslator {

  /**
   * Implementation of translate that maps onto the abstract translate(int, Writer) method.
   * {@inheritDoc}
   */
  @Override
  public final int translate(final CharSequence input, final int index, final Writer writer)
      throws IOException {
    final int codePoint = Character.codePointAt(input, index);
    final boolean consumed = translate(codePoint, writer);
    return consumed ? 1 : 0;
  }

  /**
   * Translates the specified code point into another.
   *
   * @param codePoint int character input to translate
   * @param writer Writer to optionally push the translated output to
   * @return boolean as to whether translation occurred or not
   * @throws IOException if and only if the Writer produces an IOException
   */
  public abstract boolean translate(int codePoint, Writer writer) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy