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

com.gemstone.org.jgroups.util.GFStringIdImpl Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
package com.gemstone.org.jgroups.util;

import java.text.MessageFormat;
import java.util.Locale;

public class GFStringIdImpl implements StringId {

  /** A unique identifier for this stringId
   */
  public final int id;
  /** the English translation of text */
  private final String text;

  /**
   * A GFStringId to allow users to log a literal String using
   * the {@link GFLogWriter}.
   */
  public static final StringId LITERAL = new GFStringIdImpl(1, "{0}"); 

  /** 
   * Gemstone internal constructor, customers have no need to  
   * create instances of this class.
   */  
  public GFStringIdImpl(int id, String text) {
    this.id = id;
    this.text = text;
  }
  
  /**
   * Accessor for the raw (unformatted) text of this GFStringId
   * @return unformated text
   **/ 
  public String getRawText() {
        return this.text;
  }  
  
  /**
   * @return the English translation of this GFStringId
   **/ 
  @Override
  public String toString() {
    return MessageFormat.format(this.text, (Object[])null);
  }


  /**
   * Substitutes parameter Objects into the text
   * @see java.text.MessageFormat
   * @return the English translation of this GFStringId
   **/ 
  public String toString(Object ... params) {
  return MessageFormat.format(this.text, params);
  }

  /**
   * @return the translation of this GFStringId based on the current {@link java.util.Locale}
   **/ 
  public String toLocalizedString() {
    return MessageFormat.format(this.text, (Object[])null);
  }
  
  /**
   * Substitutes parameter Objects into the text
   * @see java.text.MessageFormat
   * @return the translation of this GFStringId based on the current {@link java.util.Locale}
   **/ 
  public String toLocalizedString(Object ... params) {
    return MessageFormat.format(this.text, params);
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy