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
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(path: String, encoding: String, delimiterStartChar: Char, delimiterStopChar: Char): STGroupFile

    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

    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

    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

    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

    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
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped