Uses of Class
com.rubecula.util.Presentation

Packages that use Presentation
com.rubecula.jquantity

JQuantity Contents: Copyright Notice Overview JQuantity Philosophy Programming Conventions Package Structure
Class Structure Links Important Note about the links to classes in this document:  This document appears in two different places: the source tree and the doc tree (where it is placed by the javadoc program). 

com.rubecula.math This is the high-level description of the math package. 
com.rubecula.units JQuantity/units. 
com.rubecula.util This is the high-level description of the util package. 
 

Uses of Presentation in com.rubecula.jquantity
 

Subclasses of Presentation in com.rubecula.jquantity
 class IntegerPresentation
          Presentation class to deal with integral objects in radix 10.
 class JQuantityPresentation
          This class is a string-component representation of a JQuantity.
 class MutablePresentation
          Class
 class NumberPresentation
          Public class used primarily for the output of instances of Rational.
 class QuantityPresentation
          Presentation class to deal with quantity objects.
 class SymbolicPresentation
          Class to model the presentation of symbolic text, for example in a mathematical formula.
 class ValuePresentation
          Presentation class to deal with value objects.
 

Fields in com.rubecula.jquantity declared as Presentation
(package private)  Presentation QuantityPresentation._Number
          A Presentation representing the number part of this quantity.
static Presentation NumberPresentation.$E
          Value of E as a String.
static Presentation NumberPresentation.$Pi
          Value of Pi as a String.
 

Methods in com.rubecula.jquantity that return Presentation
 Presentation JQuantityPresentation.setValue(java.lang.String source)
          Fix the value of this Presentation according to the given string s.
 Presentation WholeNumber.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
private  Presentation WholeNumber.present(int radix, boolean exponential)
          Method to convert this WholeNumber into an equivalent Presentation.
private  Presentation WholeNumber.present(int radix)
          Method to convert this WholeNumber into an equivalent Presentation using non-exponential form.
private  Presentation WholeNumber.present(boolean exponential)
          Method to convert this WholeNumber into an equivalent Presentation, using radix 10 and exponential form.
 Presentation Value.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
(package private) static Presentation Value.TermPresentation(Presentation coefficient, java.lang.String symbol)
          This package-scope class method creates a SymbolicPresentation from the two components given.
private  Presentation Rational.presentRatio()
          Method to convert this Rational into the appropriate NumberPresentation as a ratio rather than as a decimal.
private  Presentation Rational.present(AttrMap attributes, double tolerance, boolean notRatio)
          Method to convert this Rational into an equivalent Presentation.
private  Presentation Rational.present(AttrMap attributes, double tolerance)
          Method to convert this Rational into an equivalent Presentation.
private  Presentation Rational.present(double tolerance)
          Method to convert this Rational into an equivalent Presentation.
 Presentation Rational.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation PresentationFactory.createPresentation(java.lang.String string)
          Method to create a new Presentation from this Factory.
 Presentation Manifest.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation JQuantity.present(AttrMap attributes)
           
 Presentation FuzzInt.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation Expression.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation Expression.present()
          Convert this Presentable object into a Presentation with default attributes.
 Presentation Compound.present(AttrMap attributes)
           
 Presentation Complex.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation BaseNumber.impartFuzziness(NumberPresentation presentation)
          Method to impart a NumberPresentation presentation with appropriate fuzzy information and ensure that the resulting string value is properly rounded.
 Presentation Approximation.present(AttrMap attributes)
           
 

Methods in com.rubecula.jquantity with parameters of type Presentation
 Presentable WholeNumber.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable Value.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
static Presentable Value.Parse(Presentation presentation)
          Method to create a Value from a Presentation and return it as a Presentable.
(package private) static Presentation Value.TermPresentation(Presentation coefficient, java.lang.String symbol)
          This package-scope class method creates a SymbolicPresentation from the two components given.
protected static void SymbolicPresentation.testPresentation(java.io.PrintStream out, Presentation presentation, java.lang.String label)
           
 Presentable Rational.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
static Presentable Rational.Parse(Presentation presentation)
          Create a Rational from a Presentation and return it as a Presentable.
static Rational Rational.valueOf(Presentation presentation)
          Convert Presentation presentation into a Rational.
private static Rational Rational.InitParse(Presentation presentation, java.lang.String id)
           
 Presentable Operator.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable Manifest.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable JQuantity.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable FuzzInt.parse(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable Expression.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
static Presentable Expression.Parse(Presentation presentation)
          Create a Rational from a Presentation and return it as a Presentable.
 Presentable Compound.makePresentableInstance(Presentation presentation)
           
static Presentable Complex.Parse(Presentation presentation, java.lang.String identifier)
          Create an explicitly identified Complex from a Presentation and return it as a Presentable.
static Presentable Complex.Parse(Presentation presentation)
          Create a Complex from a Presentation and return it as a Presentable.
 Presentable Complex.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable Approximation.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 

Constructors in com.rubecula.jquantity with parameters of type Presentation
SymbolicPresentation(Presentation presentation)
          Secondary constructor.
SymbolicPresentation(Presentation presentation1, Presentation presentation2)
          Secondary constructor.
SymbolicPresentation(Presentation presentation1, java.lang.String presentation2)
          Secondary constructor.
QuantityPresentation(Presentation number, java.lang.String units)
           
 

Uses of Presentation in com.rubecula.math
 

Methods in com.rubecula.math that return Presentation
 Presentation Macro.present(AttrMap attributes)
           
 

Methods in com.rubecula.math with parameters of type Presentation
 Presentable Macro.makePresentableInstance(Presentation presentation)
           
 

Uses of Presentation in com.rubecula.units
 

Methods in com.rubecula.units that return Presentation
 Presentation Units.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation SiUnit.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation FlatUnit.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 

Methods in com.rubecula.units with parameters of type Presentation
 Presentable Units.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable SiUnit.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 Presentable FlatUnit.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.
 

Uses of Presentation in com.rubecula.util
 

Subclasses of Presentation in com.rubecula.util
 class StringPresentation
          Class to model the presentation of pure text.
 class Style
          Class to represent writing styles.
 

Methods in com.rubecula.util that return Presentation
 Presentation Symbol.present(AttrMap attributes)
           
 Presentation PresentationFactoryInterface.createPresentation(java.lang.String string)
          Method to create a new Presentation from this Factory.
 Presentation Presentable.present(AttrMap attributes)
          Convert this Presentable object into a Presentation, according to the set of attributes provided.
 Presentation Item.present()
          Convert this Presentable object into a Presentation with default attributes.
 

Methods in com.rubecula.util with parameters of type Presentation
 Presentable Symbol.makePresentableInstance(Presentation presentation)
           
 Presentable Presentable.makePresentableInstance(Presentation presentation)
          Instance method to convert a Presentation into a Presentable.