object STGroupFile
Companion object for STGroupFile. This object provides apply()
methods for instantiating STGroupFile objects.
- Alphabetic
- By Inheritance
- STGroupFile
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(path: String, encoding: String, delimiterStartChar: Char, delimiterStopChar: Char): STGroupFile
Create an
STGroupFilethat reads a template group from a file, with a specific encoding, start character, and stop character.Create an
STGroupFilethat 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 callinstanceOf()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
-
def
apply(path: String, encoding: String): STGroupFile
Create an
STGroupFilethat reads a template group from a file, with a specific encoding, using the default start and stop characters.Create an
STGroupFilethat 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 callinstanceOf()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
-
def
apply(path: String): STGroupFile
Create an
STGroupFilethat reads a template group from a file, assuming the default encoding, using the default start and stop characters.Create an
STGroupFilethat 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 callinstanceOf()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
-
def
apply(url: URL, encoding: String): STGroupFile
Create an
STGroupFilethat reads a template group from a URL, with a specified encoding, using the default start and stop characters.Create an
STGroupFilethat 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 callinstanceOf()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
-
def
apply(url: URL): STGroupFile
Create an
STGroupFilethat reads a template group from a URL, assuming the default encoding, using the default start and stop characters.Create an
STGroupFilethat 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 callinstanceOf()on the resulting group. (That behavior is an artifact of the underlying StringTemplate API.)- url
the URL from which to read
- returns
the group
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )