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

gw.lang.ir.expression.IRCharacterLiteral Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.lang.ir.expression;

import gw.lang.ir.IRExpression;
import gw.lang.ir.IRType;
import gw.lang.ir.IRTypeConstants;

public class IRCharacterLiteral extends IRExpression
{
  private char _char;

  public IRCharacterLiteral( char c )
  {
    _char = c;
  }

  public char getValue()
  {
    return _char;
  }

  @Override
  public IRType getType()
  {
    return IRTypeConstants.pCHAR();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy