Object/Class

org.clapper.scalasti

STGroupFile

Related Docs: class STGroupFile | package scalasti

Permalink

object STGroupFile

Companion object for STGroupFile. This object provides apply() methods for instantiating STGroupFile objects.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. STGroupFile
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(path: String, encoding: String, delimiterStartChar: Char, delimiterStopChar: Char): STGroupFile

    Permalink

    Create an STGroupFile that reads a template group from a file, with a specific encoding, start character, and stop character.

    Create an STGroupFile that reads a template group from a file, with a specific encoding, start character, and stop character. If the file doesn't exist, this method doesn't throw an error; instead, the error shows up when you later call instanceOf() on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)

    path

    the path of the file

    encoding

    the encoding

    delimiterStartChar

    the starting delimiter character

    delimiterStopChar

    the ending delimiter character

    returns

    the group

  5. def apply(path: String, encoding: String): STGroupFile

    Permalink

    Create an STGroupFile that reads a template group from a file, with a specific encoding, using the default start and stop characters.

    Create an STGroupFile that reads a template group from a file, with a specific encoding, using the default start and stop characters. If the file doesn't exist, this method doesn't throw an error; instead, the error shows up when you later call instanceOf() on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)

    path

    the path of the file

    encoding

    the encoding

    returns

    the group

  6. def apply(path: String): STGroupFile

    Permalink

    Create an STGroupFile that reads a template group from a file, assuming the default encoding, using the default start and stop characters.

    Create an STGroupFile that reads a template group from a file, assuming the default encoding, using the default start and stop characters. If the file doesn't exist, this method doesn't throw an error; instead, the error shows up when you later call instanceOf() on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)

    The specified path can be absolute or relative. If it's relative, and StringTemplate cannot find the file, it will look for the file as a resource within the CLASSPATH.

    path

    the path of the file

    returns

    the group

  7. def apply(url: URL, encoding: String): STGroupFile

    Permalink

    Create an STGroupFile that reads a template group from a URL, with a specified encoding, using the default start and stop characters.

    Create an STGroupFile that reads a template group from a URL, with a specified encoding, using the default start and stop characters. If the URL doesn't exist, this method doesn't throw an error; instead, the error shows up when you later call instanceOf() on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)

    url

    the URL from which to read

    encoding

    the encoding

    returns

    the group

  8. def apply(url: URL): STGroupFile

    Permalink

    Create an STGroupFile that reads a template group from a URL, assuming the default encoding, using the default start and stop characters.

    Create an STGroupFile that reads a template group from a URL, assuming the default encoding, using the default start and stop characters. If the URL doesn't exist, this method doesn't throw an error; instead, the error shows up when you later call instanceOf() on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)

    url

    the URL from which to read

    returns

    the group

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped