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

com.upokecenter.mail.IdentityEncoder Maven / Gradle / Ivy

package com.upokecenter.mail;
/*
Written by Peter O. in 2014.
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
If you like this, you should donate to Peter O.
at: http://upokecenter.dreamhosters.com/articles/donate-now-2/
 */

import java.io.*;

import com.upokecenter.util.*;
import com.upokecenter.text.*;

    /**
     * An IdentityEncoder.
     */
  final class IdentityEncoder implements ICharacterEncoder
  {
    public int Encode(int c, IWriter s) {
      if (c < 0) {
 return -1;
}
      c &= 0xff;
      s.write((byte)c);
      return 1;
    }
  }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy