Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X 

A

AbstractHibernateDao<T extends Serializable> - Class in net.sf.jabb.util.db.dao
 
AbstractHibernateDao(Class<T>) - Constructor for class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
add(long, long) - Method in class net.sf.jabb.util.perf.RunTime
Add one run time.
增加一次RunTime。
addCodecOnly(CombinedRegistry, String, ChannelHandler) - Static method in class net.sf.jabb.camel.RegistryUtility
Adds codec to Registry only, it will not handle the manipulating of encoders or decoders list in Registry.
仅仅把codec直接加入到Registry中,而不处理加入到Registry里的encoders或decoders列表中。
addDecoder(CamelContext, String, ChannelUpstreamHandler) - Static method in class net.sf.jabb.camel.RegistryUtility
Adds an Netty decoder to Registry.
向Registry中增加一个给Netty用的decoder。
addDetail(String) - Method in class net.sf.jabb.util.perf.RunTime
Create a detail record and add it as a child.
创建一条详细记录并加为下级。
addDetail(RunTime) - Method in class net.sf.jabb.util.perf.RunTime
Add an existing detail record as a child.
将一条已有的详细记录加为下级。
addDetail(String, long, long) - Method in class net.sf.jabb.util.perf.RunTime
Add one run time to a specified detail record.
给指定的详细记录增加一次RunTime。
addEncoder(CamelContext, String, ChannelDownstreamHandler) - Static method in class net.sf.jabb.camel.RegistryUtility
Adds an Netty encoder to Registry.
向Registry中增加一个给Netty用的encoder。
addLoginHandlers(LoginHandler) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthLoginFilter
 
addOperand(BooleanExpression) - Method in class net.sf.jabb.util.exp.BooleanExpression
给表达式增加运算数
addOperand(BooleanExpression...) - Method in class net.sf.jabb.util.exp.BooleanExpression
给表达式增加运算数
addOperand(Collection<? extends BooleanExpression>) - Method in class net.sf.jabb.util.exp.BooleanExpression
给表达式增加运算数
addOperand(BooleanExpression) - Method in class net.sf.jabb.util.exp.CompareExpression
 
addOperand(BooleanExpression...) - Method in class net.sf.jabb.util.exp.CompareExpression
 
addRegistry(Registry) - Method in class net.sf.jabb.camel.CombinedRegistry
Adds a Registry which will be put after all others but just before the internal SimpleRegistry.
添加一个Registry,它的位置会位于其他Registry之后,但是在缺省的SimpleRegistry之前。
addRegistry(Registry...) - Method in class net.sf.jabb.camel.CombinedRegistry
Adds several Registry(s) which will be put after all others but just before the internal SimpleRegistry.
添加一些Registry,它们的位置会位于其他Registry之后,但是在缺省的SimpleRegistry之前。
addRow(Object) - Method in class net.sf.jabb.util.bean.JQueryGridData
 
addRow(Object, Object) - Method in class net.sf.jabb.util.bean.JQueryGridData
 
addRows(Collection<?>) - Method in class net.sf.jabb.util.bean.JQueryGridData
 
addRows(ResultSet) - Method in class net.sf.jabb.util.bean.JQueryGridData
Add rows from a JDBC ResultSet.
addServer(CamelContext, String, boolean, String, String, Charset, int) - Static method in class net.sf.jabb.camel.XmlSocketUtility
Creates a XML protocol based socket server in Camel.
在Camel中,创建一个基于XML的Socket接口服务器。
addSubItem(WebMenuItem) - Method in class net.sf.jabb.util.web.WebMenuItem
Add a MenuItem as the last one in its sub-menu.
addWord(Word, boolean) - Method in class net.sf.jabb.util.text.word.Dictionary
加入一个新词条,如果这个词条在词典中已经存在,则合并。
addWord(Word) - Method in class net.sf.jabb.util.text.word.Dictionary
加入一个新词条,如果这个词条在词典中已经存在,则合并。 词条对象不会被复制,而是会被引用。
addWords(Object, Collection<String>) - Method in class net.sf.jabb.util.text.word.AnalyzedTextWordLister
 
afterPropertiesSet() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
afterPropertiesSet() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
analyze(String, boolean) - Method in class net.sf.jabb.util.text.word.TextAnalyzer
对文本进行分析。
analyze(String) - Method in class net.sf.jabb.util.text.word.TextAnalyzer
对文本进行立刻分析,不用lazy方式。
AnalyzedText - Class in net.sf.jabb.util.text.word
Information about the text after analysis, including: original text, list of segmented words, list of segmented words after de-duplication, text length category, and result of keywords matching.
对文本进行分析之后的信息,包括:原文、拆分开的词或字的清单、去重复之后的拆分开的词或字的清单、 文本长度类别、关键词字匹配结果。
AnalyzedText(TextAnalyzer, String) - Constructor for class net.sf.jabb.util.text.word.AnalyzedText
Constructor.
AnalyzedTextWordLister - Class in net.sf.jabb.util.text.word
支持中英文的分词器。基于词典匹配。
AnalyzedTextWordLister() - Constructor for class net.sf.jabb.util.text.word.AnalyzedTextWordLister
 
AnalyzedTextWordLister(boolean) - Constructor for class net.sf.jabb.util.text.word.AnalyzedTextWordLister
 
analyzer - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
AND(BooleanExpression...) - Static method in class net.sf.jabb.util.exp.BooleanExpression
创建用AND连接的表达式
AND(Collection<? extends BooleanExpression>) - Static method in class net.sf.jabb.util.exp.BooleanExpression
创建用AND连接的表达式
appContext - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
associateWithFactTemplate(FactTemplate) - Method in class net.sf.jabb.drools.MapBasedFact
Associate this fact with a FactTemplate
associateWithPackage(Package) - Method in class net.sf.jabb.drools.MapBasedFact
Associate this fact with a package which has a FactTemplate defined with the same FactTemplate name
AtomicMaxLong - Class in net.sf.jabb.util.stat
It stores the maximum value; the compare-and-change procedure is synchronized so that multi-thread safe is ensured.
存放最大值,“比较然后交换”的过程是同步的,所以它是多线程安全的。
AtomicMaxLong() - Constructor for class net.sf.jabb.util.stat.AtomicMaxLong
Constructs an instance to store the maximum value.
创建一个实例,用来保存最大值。
AtomicMinLong - Class in net.sf.jabb.util.stat
It stores the minimum value; the compare-and-change procedure is synchronized so that multi-thread safe is ensured.
存放最小值,“比较然后交换”的过程是同步的,所以它是多线程安全的。
AtomicMinLong() - Constructor for class net.sf.jabb.util.stat.AtomicMinLong
Constructs an instance to store the minimum value.
创建一个实例,用来保存最小值。
attachment - Variable in class net.sf.jabb.util.bean.GenericResult
Any further information. 更进一步的信息。
attachment - Variable in class net.sf.jabb.util.perf.RunTime
 
attachments - Variable in class net.sf.jabb.util.text.StartWithMatcher
runAutomation的每一个state对应一个attachment对象。
attr - Variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
attrId() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
attrIdString() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
attrRel() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
attrRelString() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
authority - Variable in class net.sf.jabb.util.web.WebMenuItem
 
AutowiringSpringBeanJobFactory - Class in net.sf.jabb.quartz
Enhanced SpringBeanJobFactory with autowiring capability.
AutowiringSpringBeanJobFactory() - Constructor for class net.sf.jabb.quartz.AutowiringSpringBeanJobFactory
 
available() - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 

B

baseClass - Variable in class net.sf.jabb.util.prop.PropertiesLoader
 
BasicFrequencyCounter - Class in net.sf.jabb.util.stat
频次计数器
BasicFrequencyCounter(long, TimeUnit, long, TimeUnit) - Constructor for class net.sf.jabb.util.stat.BasicFrequencyCounter
创建一个实例,如果purgePeriod参数不为0则会自动进行历史数据清除。
BasicFrequencyCounter(long, TimeUnit) - Constructor for class net.sf.jabb.util.stat.BasicFrequencyCounter
创建一个不对历史数据进行自动清除的实例。
BasicFrequencyCounter() - Constructor for class net.sf.jabb.util.stat.BasicFrequencyCounter
创建一个不对历史数据进行自动清除,且不针对时间颗粒度 (比如,对于一批短信,对不同长度短信各有多少条进行统计)的实例。
BasicFrequencyCounter(FrequencyCounterDefinition) - Constructor for class net.sf.jabb.util.stat.BasicFrequencyCounter
根据配置信息创建一个实例。
BasicNumberStatistics - Class in net.sf.jabb.util.stat
提供基本的统计信息,包括: 最大值、最小值、平均值、总计、个数。 它是多线程安全的。
BasicNumberStatistics() - Constructor for class net.sf.jabb.util.stat.BasicNumberStatistics
 
beanClasses - Variable in class net.sf.jabb.util.db.ResultSetUtility
 
BooleanExpression - Class in net.sf.jabb.util.exp
Logical expression that results in true or false.
产生true或false结果的逻辑表达式。
BooleanExpression(int) - Constructor for class net.sf.jabb.util.exp.BooleanExpression
创建一个实例
breadcrumbs - Variable in class net.sf.jabb.util.web.WebMenuItem
 
buildBeanClass(ResultSetMetaData, Map<String, ColumnMetaData>) - Method in class net.sf.jabb.util.db.ResultSetUtility
 
buildDelimiters(String, Charset) - Method in class net.sf.jabb.netty.XmlDecoder
Creates delimiters that will be used to construct DelimiterBasedFrameDecoder.
根据XML标签的名称,生成适合DelimiterBasedFrameDecoder用的delimiters。

C

C3p0DataSourceProvider - Class in net.sf.jabb.util.db.impl
 
C3p0DataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.C3p0DataSourceProvider
 
CamelContextController - Class in net.sf.jabb.camel
As a wrapper, it controls the CamelContext, for example, start, stop, suspend and resume.
作为一个包装层,它控制CamelContext的启动、停止、暂停、继续等。
CamelContextController(CamelContext, String, boolean) - Constructor for class net.sf.jabb.camel.CamelContextController
Creates an instance which wraps a specified CamelContext, listens at a specified port and controls the CamelContext according to commands received from that port.
创建一个实例,它包装指定的某个CamelContext,在指定的端口上监听, 并根据接受到的命令对包装的CamelContext进行控制。
CamelContextController(CamelContext, String) - Constructor for class net.sf.jabb.camel.CamelContextController
Creates an instance which wraps a specified CamelContext, listens at a specified port and controls the CamelContext according to commands received from that port.
创建一个实例,它包装指定的某个CamelContext,在指定的端口上监听, 并根据接受到的命令对包装的CamelContext进行控制。
cell - Variable in class net.sf.jabb.util.bean.JQueryGridData.Row
 
charset - Variable in class net.sf.jabb.util.web.CharsetFilter
 
CharsetFilter - Class in net.sf.jabb.util.web
The filter to alter charset of response.
CharsetFilter() - Constructor for class net.sf.jabb.util.web.CharsetFilter
 
children - Variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
children - Variable in class net.sf.jabb.util.exp.BooleanExpression
 
ChineseWordIdentifier - Class in net.sf.jabb.util.text.word
 
ChineseWordIdentifier() - Constructor for class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
chineseWordIdentifier - Variable in class net.sf.jabb.util.text.word.WordIdentifier
 
cleanUpMenuTree(WebMenuItem, String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Convert MenuItemExt to WebMenuItem, and clean up all data
CleanUpOnCloseVfsInputStream - Class in net.sf.jabb.util.vfs
Cleans up when got closed.
CleanUpOnCloseVfsInputStream(FileObject, FileSystemManager) - Constructor for class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
Encapsulate the original InputStream of a file.
clear() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
clearRows() - Method in class net.sf.jabb.util.bean.JQueryGridData
 
clearText - Variable in class net.sf.jabb.util.text.MaskedText
 
clearType(int) - Method in class net.sf.jabb.util.text.word.Word
标志这个词条不属于某种类型。
clearTypes() - Method in class net.sf.jabb.util.text.word.Word
标示这个词条不属于任何一种类型。
close() - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
close(FileSystemManager) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Close the FileSystemManager.
close(FileObject) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Close the FileObject.
close(FileObject...) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Close FileObject(s)
close(FileSystemManager, FileObject) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Close both FileObject and FileSystemManager.
close(FileSystemManager, FileObject...) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Close both FileObject(s) and FileSystemManager.
closeConnection(Connection) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Closes database Connection.
closeConnection(Connection, Statement) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Close database connection and statement.
closeConnection(Connection, Statement, Statement) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, Statement, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, ResultSet, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, Statement, ResultSet, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, ResultSet, ResultSet, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, Statement, ResultSet, ResultSet, ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, ResultSet...) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection, Statement, Statement, ResultSet...) - Static method in class net.sf.jabb.util.db.ConnectionUtility
 
closeConnection(Connection) - Method in class net.sf.jabb.util.db.HibernateConnectionProvider
 
closeResultSet(ResultSet) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Closes database ResultSet No exception will be thrown even if occurred during closing, instead, the exception will be logged at warning level.
closeStatement(Statement) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Closes database Statement.
CollectionFormatter - Class in net.sf.jabb.util.text
Handles the formatting of collections.
CollectionFormatter() - Constructor for class net.sf.jabb.util.text.CollectionFormatter
 
columnLabelOrName(ResultSetMetaData, int) - Method in class net.sf.jabb.util.db.ResultSetUtility
Get the label or name of a column
ColumnMetaData - Class in net.sf.jabb.util.db
This class encapsulates all the column related metadata you can get from ResultSetMetaData, and in additional, some fields are added such as index, labelOrName propertyName.
ColumnMetaData(ResultSetMetaData, int) - Constructor for class net.sf.jabb.util.db.ColumnMetaData
Construct an instance with result set metadata and column index
columnNameToPropertyName(String) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert column name to property name, for example, THIS_IS_1ST_COLUMN_$$ will become thisIs1stColumn
columnToPropertyName(ResultSetMetaData, int) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert column name to property name for a column, for example, THIS_IS_1ST_COLUMN_$$ will become thisIs1stColumn
columnToPropertyOverrides - Variable in class net.sf.jabb.util.db.ResultSetUtility
 
CombinedRegistry - Class in net.sf.jabb.camel
It enables you to combine several Registry(s) into one.
它使得你可以把好几个Registry合并在一起。
CombinedRegistry() - Constructor for class net.sf.jabb.camel.CombinedRegistry
Constructs an instance that contains only an internal SimpleRegistry.
创建一个实例,它仅含有内置的SimpleRegistry。
CombinedRegistry(Registry) - Constructor for class net.sf.jabb.camel.CombinedRegistry
Constructs an instance that contains not only an internal SimpleRegistry, but also the Registry specified.
创建一个除了内置的SimpleRegistry之外,还包含指定Registry的实例。
CombinedRegistry(Registry...) - Constructor for class net.sf.jabb.camel.CombinedRegistry
Constructs an instance that contains not only an internal SimpleRegistry, but also several Registry(s) specified.
创建一个除了内置的SimpleRegistry之外,还包含指定的一些Registry的实例。
COMMA - Static variable in class net.sf.jabb.stdr.view.TemplateJstlView
 
command(String) - Method in class net.sf.jabb.camel.CamelContextController
Sends command to the control command queue.
向待处理的控制命令队列中发送一个命令。
commandQueue - Variable in class net.sf.jabb.camel.CamelContextController
The queue for control commands.
ComparableArray - Class in net.sf.jabb.util.col
Encapsulates multiple Comparable (implements Comparable Interface) values into one object, which is suitable to be used as key object of Map.
把多个可比较(实现了Comparable)值封装在这一个对象里,适合用来作为Map的key。
ComparableArray(Comparable...) - Constructor for class net.sf.jabb.util.col.ComparableArray
Constructs an instance that encapsulates specified Comparable values.
创建一个包含这些可比较值的实例。
compare(Object) - Method in class net.sf.jabb.util.exp.CompareExpression
子类应该实现这个方法,利用leftOperand, operation, rightOperand、以及context来 作具体的比较运算,返回确切的结果。
compare(Object) - Method in class net.sf.jabb.util.exp.NumberCompareExpression
 
CompareExpression - Class in net.sf.jabb.util.exp
用于得到比较结果
CompareExpression(Object, int, Object) - Constructor for class net.sf.jabb.util.exp.CompareExpression
 
CompareOperation - Interface in net.sf.jabb.util.exp
比较操作的类型常量定义。
compareTo(Object) - Method in class net.sf.jabb.util.col.ComparableArray
 
compareTo(Object) - Method in class net.sf.jabb.util.col.IntegerArray
Compare.
比较。
compareTo(Object) - Method in class net.sf.jabb.util.col.LongArray
Compare.
比较。
compareTo(Object) - Method in class net.sf.jabb.util.col.NumberArray
Compare.
比较。
compareTo(WebMenuItem) - Method in class net.sf.jabb.util.web.WebMenuItem
 
configHttpFileSystemProxy(FileSystemOptions, String, Integer, String, String) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Configure FileSystemOptions for HttpFileSystem
ConfigTag - Class in net.sf.jabb.stdr.jsp
 
ConfigTag() - Constructor for class net.sf.jabb.stdr.jsp.ConfigTag
 
configuration - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
connectionProperties - Variable in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
ConnectionUtility - Class in net.sf.jabb.util.db
数据库连接工具,它提供有关数据库连接获取、关闭的方法。 它用到commons-logging来记录执行情况。
ConnectionUtility() - Constructor for class net.sf.jabb.util.db.ConnectionUtility
 
ConnectionUtilityConnectionProvider - Class in net.sf.jabb.quartz
It provides database connections to Quartz with ConnectionUtility
ConnectionUtilityConnectionProvider() - Constructor for class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
consume() - Method in class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
This method is overridden over parent class so that a batch of data is taken from the queue and QueueBatchUniqueProcessor.process(Set) is invoked.
这个方法被重载了,从而队列中的一批数据会被取出并调用QueueBatchUniqueProcessor.process(Set)方法。
consume() - Method in class net.sf.jabb.util.thread.QueueConsumer
Consume the data in queue - this method should be overridden in subclass.
处理队列中的数据——这个方法应该在子类中被重载。
consume() - Method in class net.sf.jabb.util.thread.QueueProcessor
This method is overridden over parent class so that one piece of data is taken from the queue and QueueProcessor.process(Object) is invoked.
这个方法被重载了,从而队列中的一份数据会被取出并调用QueueProcessor.process(Object)方法。
consumers - Variable in class net.sf.jabb.util.thread.QueueConsumerGroup
 
ContainerPreAuthCallbackHandler - Class in net.sf.jabb.magnolia.auth
It holds pre-authenticated remote user name.
ContainerPreAuthCallbackHandler(String) - Constructor for class net.sf.jabb.magnolia.auth.ContainerPreAuthCallbackHandler
 
ContainerPreAuthCallbackHandler(String, String) - Constructor for class net.sf.jabb.magnolia.auth.ContainerPreAuthCallbackHandler
 
ContainerPreAuthJCRAuthenticationModule - Class in net.sf.jabb.magnolia.auth
Utilizing container pre-authenticated user name.
ContainerPreAuthJCRAuthenticationModule() - Constructor for class net.sf.jabb.magnolia.auth.ContainerPreAuthJCRAuthenticationModule
 
ContainerPreAuthLogin - Class in net.sf.jabb.magnolia.auth
Utilizing container (e.g.
ContainerPreAuthLogin() - Constructor for class net.sf.jabb.magnolia.auth.ContainerPreAuthLogin
 
ContainerPreAuthLoginFilter - Class in net.sf.jabb.magnolia.auth
 
ContainerPreAuthLoginFilter() - Constructor for class net.sf.jabb.magnolia.auth.ContainerPreAuthLoginFilter
 
containsKey(Object) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
containsValue(Object) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
contentType - Variable in class net.sf.jabb.util.bean.StrutsUploaded
 
context - Variable in class net.sf.jabb.camel.CamelContextController
The CamelContext that the CamelContextController controls.
context - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
convertAllToDynamicBeans(ResultSet) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert all rows of the ResultSet to a list of beans of a dynamically generated class.
convertAllToMaps(ResultSet) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert all rows of the ResultSet to a Map.
convertAllToMaps(ResultSet, Map<String, ColumnMetaData>) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert all rows of the ResultSet to a Map.
convertToDynamicBean(ResultSet) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert current row of the ResultSet to a bean of a dynamically generated class.
convertToMap(ResultSet) - Method in class net.sf.jabb.util.db.ResultSetUtility
Convert current row of the ResultSet to a Map.
convertToMap(ResultSet, Map<String, ColumnMetaData>) - Method in class net.sf.jabb.util.db.ResultSetUtility
 
copyRunAutomaton() - Method in class net.sf.jabb.util.text.StartWithMatcher
Make a copy of the internal state machine (dk.brics.automaton.RunAutomaton) of this instance.
把自己内部的状态机(dk.brics.automaton.RunAutomaton)对象复制一份。
count(long, int) - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
记录在某时刻发生了多少次。
count - Variable in class net.sf.jabb.util.stat.BasicNumberStatistics
 
count(long, int) - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在某时刻发生了多少次
count(Date, int) - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在某个时间发生了几次
count(long) - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在某个时间发生了一次
count() - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在当前时间发生了一次
count(int) - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在当前时间发生了几次
count(Date) - Method in class net.sf.jabb.util.stat.FrequencyCounter
记录在某个时间发生了一次
count(long, int) - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
 
countAll() - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get the count of all records in database
countByHql(String) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get the count of all records in database
countByHql(String, Object[], Type[]) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get the count of all records in database
countBySql(String) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get the count of all records in database
countBySql(String, Object[], Type[]) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get the count of all records in database
counters - Variable in class net.sf.jabb.util.stat.BasicFrequencyCounter
 
counters - Variable in class net.sf.jabb.util.stat.PackagedFrequencyCounter
 
create(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
createColumnToPropertyMappings(ResultSetMetaData) - Method in class net.sf.jabb.util.db.ResultSetUtility
To determine the final column to property mappings.
createDataSource(String) - Static method in class net.sf.jabb.util.db.ConnectionUtility
为指定的逻辑数据库源创建DataSource。
createDataSource(String, String) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Create DataSource and bind it to JNDI
createDataSource(String, String) - Method in interface net.sf.jabb.util.db.DataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.C3p0DataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.DbcpDataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.DirectDataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.JndiDataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.OracleCachedDataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.ProxoolDataSourceProvider
 
createDataSource(String, String) - Method in class net.sf.jabb.util.db.impl.TryDataSourceProvider
 
createFSContext() - Static method in class net.sf.jabb.util.context.InitialContextFinder
 
createInstance(int, String, Map<String, ? extends Object>, Map<Integer, ? extends Object>) - Static method in class net.sf.jabb.util.text.word.TextAnalyzer
Create an instance of TextAnalyzer.
创建一个文本分析器实例。
createInstance(int, Map<String, ? extends Object>, Map<Integer, ? extends Object>) - Static method in class net.sf.jabb.util.text.word.TextAnalyzer
Create an instance of TextAnalyzer.
创建一个文本分析器实例。
createInstance(int) - Static method in class net.sf.jabb.util.text.word.TextAnalyzer
Create an instance of TextAnalyzer.
创建一个文本分析器实例。
createJobInstance(TriggerFiredBundle) - Method in class net.sf.jabb.quartz.AutowiringSpringBeanJobFactory
 
createList(ResultSetMetaData) - Static method in class net.sf.jabb.util.db.ColumnMetaData
Get all the column meta data and put them into a list in their default order
createMapByLabelOrName(ResultSetMetaData) - Static method in class net.sf.jabb.util.db.ColumnMetaData
Get all the column meta data and put them into a map keyed by column label or name
createValue(K) - Method in interface net.sf.jabb.util.col.MapValueFactory
 
CURRENT_MENU_ITEM_PARAMETER - Static variable in class net.sf.jabb.stdr.StdrUtil
 
currentValue - Variable in class net.sf.jabb.util.thread.Sequencer
 
cwIdentifier - Variable in class net.sf.jabb.util.text.word.FastTextAnalyzer
 

D

data - Variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
Can be a String for non-i18n, or a Map for i18n.
dataSource - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
DataSourceProvider - Interface in net.sf.jabb.util.db
 
dataSourceProviders - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
dataSources - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
dataSourcesStructureLock - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
dataString() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
DbcpDataSourceProvider - Class in net.sf.jabb.util.db.impl
DataSourceProvider for DBCP.
DbcpDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.DbcpDataSourceProvider
 
DEBUG - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
decode(ChannelHandlerContext, Channel, Object) - Method in class net.sf.jabb.netty.XmlDecoder.XmlStringDecoder
Get the text and process its beginning and ending to make it a clean XML text.
先取到字符串,然后把取得的字符串进一步加工,以形成头尾完整干净的XML文本。
deduplicate(String) - Method in class net.sf.jabb.util.text.NameDeduplicator
Ensure a unique name, rename if needed.
确保名称不重复,如果有必要就改名。
DEFAULT_INCLUDE_PROPERTY_NAME - Static variable in class net.sf.jabb.util.prop.PropertiesLoader
The default inclusion keyword, which is ".include".
缺省的包含属性关键字。为".include"
defaultLocale - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
defaultSimpleRegistry - Variable in class net.sf.jabb.camel.CombinedRegistry
 
defaultThreadPool - Static variable in class net.sf.jabb.util.thread.QueueConsumer
If no ExecutorService is specified in constructor, then the working thread will come from this thread pool.
如果在构造方法中没有指定ExecutorService,则它的工作线程 将取自这个线程池。
delayedCreate(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
delayedDelete(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
delayedDeleteById(Long) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
delayedUpdate(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
delete(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
deleteById(Serializable) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
delimiter - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
DELIMITERS - Static variable in class net.sf.jabb.util.prop.PropertiesLoader
If more than one file need to be included, the delimiters that can be used among file names, which is "[ ,;\t]+include".
如果需要包含多个文件,文件名之间所采用的分隔符,为"[ ,;\t]+include"。
delimiterType - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
DELIMITORS - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
description - Variable in class net.sf.jabb.util.perf.RunTime
 
destroy() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
destroy() - Method in class net.sf.jabb.util.web.CharsetFilter
 
detail - Variable in class net.sf.jabb.util.perf.RunTime
 
dict - Variable in class net.sf.jabb.util.text.word.MmsegTextAnalyzer
 
Dictionary - Class in net.sf.jabb.util.text.word
词典。
Dictionary() - Constructor for class net.sf.jabb.util.text.word.Dictionary
 
Dictionary(Dictionary) - Constructor for class net.sf.jabb.util.text.word.Dictionary
创建一个实例,其内容是拷贝自另一个实例。
dictionaryPath - Variable in class net.sf.jabb.util.text.word.TextAnalyzer
 
DirectDataSourceConfiguration - Class in net.sf.jabb.util.db.impl
 
DirectDataSourceConfiguration(String) - Constructor for class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
DirectDataSourceProvider - Class in net.sf.jabb.util.db.impl
 
DirectDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.DirectDataSourceProvider
 
doAfterBody() - Method in class net.sf.jabb.stdr.jsp.ConfigTag
 
doEndTag() - Method in class net.sf.jabb.stdr.jsp.ConfigTag
 
doExecute(String, ActionInvocation) - Method in class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult
 
doFilter(HttpServletRequest, HttpServletResponse, FilterChain) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthLoginFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class net.sf.jabb.util.web.CharsetFilter
 
DoubleValueBean<V1,V2> - Class in net.sf.jabb.util.bean
 
DoubleValueBean() - Constructor for class net.sf.jabb.util.bean.DoubleValueBean
 
DoubleValueBean(V1, V2) - Constructor for class net.sf.jabb.util.bean.DoubleValueBean
 
driverClassName - Variable in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
DriverManagerDataSource - Class in net.sf.jabb.util.db.impl
 
DriverManagerDataSource(String, String, Properties) - Constructor for class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
DriverManagerDataSource(String, Properties) - Constructor for class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
DriverManagerDataSource(String) - Constructor for class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
DurationFormatter - Class in net.sf.jabb.util.text
An utility to format the length of time period to String, for example: 00:03:01.011 or 7d, 12:32:02:001.
一个可以用来格式化时间段信息的工具类,其输出结果比如: 00:03:01.011,或:7d, 12:32:02:001。
DurationFormatter() - Constructor for class net.sf.jabb.util.text.DurationFormatter
 
dynamic - Variable in class net.sf.jabb.util.web.WebMenuItem
 

E

emptyChunk - Static variable in class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
end() - Method in class net.sf.jabb.util.perf.RunTime
Ends the calculation of run time.
结束计时,它必须与开始计时在同一个线程中被调用。
endDetail(String) - Method in class net.sf.jabb.util.perf.RunTime
Ends the calculation of run time of a detail record.
结束对一个详细记录的计时,它必须与开始计时在同一个线程中被调用。
endTagEndingByte - Static variable in class net.sf.jabb.netty.XmlDecoder
 
ensureDataExists() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
检查是否供统计的数据存在,如果没有则抛异常
entrySet() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
EQ - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 
equals(Object) - Method in class net.sf.jabb.util.col.ComparableArray
 
equals(Object) - Method in class net.sf.jabb.util.col.IntegerArray
 
equals(Object) - Method in class net.sf.jabb.util.col.LongArray
 
equals(Object) - Method in class net.sf.jabb.util.col.NumberArray
 
ERROR - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
errorMessage - Variable in class net.sf.jabb.util.bean.GenericResult
Detail of the error if there is any.
出错消息(仅针对操作不成功的情况)
escapeForRegExp(String) - Static method in class net.sf.jabb.util.text.StartWithMatcher
Escape special characters according to syntax of regular expression.
按正则表达式语法,对字符串进行escape。
evaluate(Object) - Method in class net.sf.jabb.util.exp.BooleanExpression
获得表达式的结果。子类可以重载这个方法。
evaluate() - Method in class net.sf.jabb.util.exp.BooleanExpression
用null作为context获得表达式的结果。子类不必重载这个方法。
evaluate(Object) - Method in class net.sf.jabb.util.exp.CompareExpression
 
execute() - Method in class net.sf.jabb.web.action.VfsTreeAction
AJAX tree functions
executeSQL(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Execute one SQL statement.
executeSqlResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Execute SQL statements stored in a resource.
expandNumberMatchingRange(Map<String, T>, String, String, T) - Static method in class net.sf.jabb.util.text.StringStartWithMatcher
Expand number segments (such as 138000~138999 or 138000~138029) into number headings (such as 138 or {13800,13801,13802}).
把号码段(类似:138000~138999或138000~138029)展开成号码头(类似:138或13800,13801,13802)。
exposeHelpers(HttpServletRequest) - Method in class net.sf.jabb.stdr.view.TemplateJstlView
 
extractScheme(String) - Static method in class net.sf.jabb.util.vfs.VfsUtility
Extracts the scheme from a URI.
extractTemplateParameters(String) - Static method in class net.sf.jabb.stdr.view.TemplateJstlView
Parse the template descriptor to extract template parameters
extractTemplateUrl(String) - Static method in class net.sf.jabb.stdr.view.TemplateJstlView
Parse the template descriptor to extract template URL

F

factId - Variable in class net.sf.jabb.drools.MapBasedFact
 
factTemplate - Variable in class net.sf.jabb.drools.MapBasedFact
 
factTemplateName - Variable in class net.sf.jabb.drools.MapBasedFact
 
FALSE - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
FastTextAnalyzer - Class in net.sf.jabb.util.text.word
基于KeywordMatcher分词的文本分析器。
FastTextAnalyzer(String, Map<String, ? extends Object>, Map<Integer, ? extends Object>) - Constructor for class net.sf.jabb.util.text.word.FastTextAnalyzer
 
FATAL - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
file - Variable in class net.sf.jabb.util.bean.StrutsUploaded
 
file - Variable in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
fileName - Variable in class net.sf.jabb.util.bean.StrutsUploaded
 
findDefault(Hashtable<?, ?>) - Static method in class net.sf.jabb.util.context.InitialContextFinder
找到现成的。
findDefault() - Static method in class net.sf.jabb.util.context.InitialContextFinder
找到现成的。
findMenuItem(Object) - Method in class net.sf.jabb.util.web.WebMenuInterceptor
 
findOrCreate(Hashtable<?, ?>) - Static method in class net.sf.jabb.util.context.InitialContextFinder
找到现成的的或创建一个。
findOrCreate() - Static method in class net.sf.jabb.util.context.InitialContextFinder
找到现成的的或创建一个。
firstRunStartTime - Variable in class net.sf.jabb.util.perf.RunTime
 
folderFirst - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
format(Collection<?>, String, String, boolean) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements' properties to delimiter separated string.
Usage examples:
CollectionFormatter.format(myCollection, null, ","); CollectionFormatter.format(myCollection, "personInCharge.name.firstName", ", "); CollectionFormatter.format(myCollection, "relatedPeople(InCharge).name", ", "); CollectionFormatter.format(myCollection, "subordinate[3].address(home).city", " | ");
format(Collection<?>, String, String) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements' properties to delimiter separated string, with trimming on the elements' properties
format(Collection<?>) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements to ',' separated string with trimming on the elements' toString().
format(Collection<?>, boolean) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements to ',' separated string.
format(Collection<?>, String) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements' properties to ',' separated string, with trimming on the elements' properties
format(Collection<?>, String, boolean) - Static method in class net.sf.jabb.util.text.CollectionFormatter
Format a collection's elements' properties to ',' separated string, with trimming on the elements' properties
format(long, TimeUnit, boolean) - Static method in class net.sf.jabb.util.text.DurationFormatter
Format the length of time period (in milliseconds) to String.
格式化时间长度(以毫秒为单位)为字符串。
format(long) - Static method in class net.sf.jabb.util.text.DurationFormatter
Format the length of time period (in milliseconds) to String.
格式化时间长度(以毫秒为单位)为字符串。
formatSince(long) - Static method in class net.sf.jabb.util.text.DurationFormatter
Format the length of time period between current system time and specified time to String.
格式化指定时间同当前系统时间之间的时间差为字符串。
found - Static variable in class net.sf.jabb.util.context.InitialContextFinder
 
frameDecoder - Variable in class net.sf.jabb.netty.XmlDecoder
 
FrequencyCounter - Class in net.sf.jabb.util.stat
频次计数器的基类,它实现了一些公共的方法,并留出具体实现方法给子类去实现。
FrequencyCounter() - Constructor for class net.sf.jabb.util.stat.FrequencyCounter
 
FrequencyCounterDefinition - Class in net.sf.jabb.util.stat
频次计数器的设置信息
FrequencyCounterDefinition(Object, long, TimeUnit) - Constructor for class net.sf.jabb.util.stat.FrequencyCounterDefinition
创建一个不自动删除历史数据的频次计数器配置信息对象
FrequencyCounterDefinition(Object, long, TimeUnit, long, TimeUnit) - Constructor for class net.sf.jabb.util.stat.FrequencyCounterDefinition
创建一个自动删除历史数据的频次计数器配置信息对象
fsManager - Variable in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
fsOptions - Variable in class net.sf.jabb.web.action.VfsTreeAction
 

G

GE - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 
GenericResult<T> - Class in net.sf.jabb.util.bean
Generic bean to contain result/response information.
通用的存放返回结果的Bean。
GenericResult(boolean, String, T) - Constructor for class net.sf.jabb.util.bean.GenericResult
Constructor.
创建一个对象实例。
GenericResult(boolean, String) - Constructor for class net.sf.jabb.util.bean.GenericResult
Constructor without the need of attachment parameter.
GenericResult(boolean) - Constructor for class net.sf.jabb.util.bean.GenericResult
 
GenericResult() - Constructor for class net.sf.jabb.util.bean.GenericResult
 
get(Map<?, V>) - Method in class net.sf.jabb.util.col.MapGetter
Get the first matching value in the map.
get(Object) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
Get the value object corresponding to the key object specified, if such entry does not exist in the Map, then create one and put into the Map and return the value object in the newly created entry.
取得key所对应的value,如果目前在Map里没有,则在Map里新建一个并返回新建 的这个value对象。
getAll() - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllAcceptedStates(CharSequence, int) - Method in class net.sf.jabb.util.text.StartWithMatcher
By utilizing the state machine (dk.brics.automaton.RunAutomaton), get all the accepted matching state.
getAllByHql(String) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllByHql(String, Integer, Integer) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllByHql(String, Object[], Type[]) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllByHql(String, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by HQL with one pair of parameterType-value
getAllByHql(String, Object, Type, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by HQL with two pairs of parameterType-value
getAllByHql(String, Object, Type, Object, Type, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by HQL with three pairs of parameterType-value
getAllByHql(String, Object[], Type[], Integer, Integer) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllBySql(String) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllBySql(String, Integer, Integer) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by SQL with specific offset and limit
getAllBySql(String, Object[], Type[]) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by SQL with pairs of parameterType-value
getAllBySql(String, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by SQL with one pair of parameterType-value
getAllBySql(String, Object, Type, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by SQL with two pairs of parameterType-value
getAllBySql(String, Object, Type, Object, Type, Object, Type) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get all by SQL with three pairs of parameterType-value
getAllBySql(String, Object[], Type[], Integer, Integer) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getAllDetail() - Method in class net.sf.jabb.util.perf.RunTime
 
getAndMax(long) - Method in class net.sf.jabb.util.stat.AtomicMaxLong
Compare a value with current maximum value and make the greater one the new maximum value; Previous maximum value before comparison is returned.
拿一个值同当前值比较,把其中大的那个设置为新的最大值,返回比较之前的老的最大值。
getAndMin(long) - Method in class net.sf.jabb.util.stat.AtomicMinLong
Compare a value with current minimal value and make the less one the new minimum value; Old minimum value before comparison is returned.
拿一个值同当前值比较,把其中小的那个设置为新的最小值,返回比较之前的旧的最小值。
getAttachment() - Method in class net.sf.jabb.util.bean.GenericResult
 
getAttachment() - Method in class net.sf.jabb.util.perf.RunTime
 
getAttachment() - Method in class net.sf.jabb.util.text.MatchingDefinition
 
getAttr(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getAttr(String, Class<T>) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getAttr() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getAttrAsString(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getAuthority() - Method in class net.sf.jabb.util.web.WebMenuItem
 
getAvg() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
取得平均值。如果此前并没有提供任何值给统计用,则会抛出异常。
getBatchUpdateCount(int[]) - Static method in class net.sf.jabb.util.db.ConnectionUtility
获得Statement.executeBatch()所修改的总记录数。
getBeanFactory() - Method in class net.sf.jabb.quartz.AutowiringSpringBeanJobFactory
Subclass should override this method to set beanFactory to somewhere globally.
getBreadcrumbs() - Method in class net.sf.jabb.util.web.WebMenuItem
 
getById(Serializable) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getByteValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getCatalogName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getCell() - Method in class net.sf.jabb.util.bean.JQueryGridData.Row
 
getChildNodes(FileObject, String) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getChildren() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getClassName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getClearText() - Method in class net.sf.jabb.util.text.MaskedText
 
getCombinedRegistry(CamelContext) - Static method in class net.sf.jabb.camel.RegistryUtility
Gets CombinedRegistry from CamelContext.
从CamelContext中得到CombinedRegistry类型的Registry。
getConnection() - Method in class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
getConnection(String) - Static method in class net.sf.jabb.util.db.ConnectionUtility
从指定的逻辑数据库源中获取数据库连接。
getConnection() - Method in class net.sf.jabb.util.db.HibernateConnectionProvider
 
getConnection() - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
getConnection(String, String) - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
getConnectionProperties() - Method in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
getConsumer(String) - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Get QueueConsumer instance by its name.
按名称寻找得到QueueConsumer。
getConsumers() - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Get the Map of all QueueConsumer.
获得含有全部QueueConsumer的Map。
getContentType() - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
getCount(long) - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
获取在某时刻的计数值。
getCount(long, long, boolean, boolean) - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
获得在指定时间范围内的总频次
getCount() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
取得已经提供给统计的值的个数。如果此前并没有提供任何值给统计用,则返回0。
getCount(long) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时刻的统计数
getCount(long, long, boolean, boolean) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得在某时段内的总统计数
getCount(Date) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某个时间的计数
getCount(long, long) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时间区间的计数
getCount(Date, Date, boolean, boolean) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时间区间的计数
getCount(Date, Date) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时间区间的计数
getCount(long, long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时间区间的计数
getCount(Date, long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得某时间区间的计数
getCount(long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
获得最近一段时间的计数
getCount(long) - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
 
getCount(long, long, boolean, boolean) - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
 
getCounter(Object) - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
根据ID,获取ID所对应的BasicFrequencyCounter
getCounts() - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
获得全部计数统计
getCurrentSession() - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
Get current session.
getData() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getDataSource(String) - Static method in class net.sf.jabb.util.db.ConnectionUtility
为指定的逻辑数据库源获取实际可用的DataSource。
getDataSource() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getDataSourceName() - Method in class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
getDefaultLocale() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
getDefaultSimpleRegistry() - Method in class net.sf.jabb.camel.CombinedRegistry
Gets the internal SimpleRegistry which can be manipulated later.
获得其内置的缺省SimpleRegistry,其后可以向它进行增删改查操作。
getDelimiter() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getDelimiterType() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getDescription() - Method in class net.sf.jabb.util.perf.RunTime
 
getDetail(String) - Method in class net.sf.jabb.util.perf.RunTime
Get specified detail record, if it does not exist yet, create it first.
获得指定的详细记录,如果不存在则先创建一个。
getDisplaySize() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getDoubleValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getDriverClassName() - Method in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
getEntityClass() - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
getErrorMessage() - Method in class net.sf.jabb.util.bean.GenericResult
 
getExactMatchExample() - Method in class net.sf.jabb.util.text.MatchingDefinition
 
getExactMatchExamples() - Method in class net.sf.jabb.util.text.MatchingDefinition
 
getFactId() - Method in class net.sf.jabb.drools.MapBasedFact
 
getFactTemplate() - Method in class net.sf.jabb.drools.MapBasedFact
 
getFieldValue(int) - Method in class net.sf.jabb.drools.MapBasedFact
 
getFieldValue(String) - Method in class net.sf.jabb.drools.MapBasedFact
 
getFile() - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
getFileName() - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
getFirstRunStartTime() - Method in class net.sf.jabb.util.perf.RunTime
 
getFloatValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getFrameDecoder() - Method in class net.sf.jabb.netty.XmlDecoder
Get the frame decoder to be used by Netty.
获得给Netty用的frame decoder。
getFreeServerPort(int) - Static method in class net.sf.jabb.util.net.SocketUtility
Get a free server port that can be used.
getFreeServerPort() - Static method in class net.sf.jabb.util.net.SocketUtility
Get a free server port that can be used.
getFreeServerPort(boolean, int...) - Static method in class net.sf.jabb.util.net.SocketUtility
Get a free server port that can be used.
getFreeServerPort(int...) - Static method in class net.sf.jabb.util.net.SocketUtility
Get a free server port that can be used.
getFsOptions() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getGranularity() - Method in class net.sf.jabb.util.stat.FrequencyCounterDefinition
获得颗粒度
getId() - Method in class net.sf.jabb.util.bean.JQueryGridData.Row
 
getId() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getId() - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
getId() - Method in class net.sf.jabb.util.stat.FrequencyCounterDefinition
获得ID
getIdentifiedWords() - Method in class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
getIndex() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getIntValue(int) - Method in class net.sf.jabb.util.col.IntegerArray
Gets the value in specified position.
获得指定位置的值。
getIntValue(int) - Method in class net.sf.jabb.util.col.LongArray
Gets the value in specified position.
获得指定位置的值。
getIntValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getIsCopy() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getIsLeaf() - Method in class net.sf.jabb.util.web.WebMenuItem
Is this menu item a leaf node in the menu tree?
getIsRoot() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getjQueryTheme() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
getKey() - Method in class net.sf.jabb.util.bean.KeyValueBean
 
getKeywordAttachment() - Method in class net.sf.jabb.util.text.word.Word
 
getLabel() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getLabelOrName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getLanguage() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getLanguage() - Method in class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
getLastAcceptedState(CharSequence) - Method in class net.sf.jabb.util.text.StartWithMatcher
By utilizing the state machine (dk.brics.automaton.RunAutomaton), get the last accepted matching state.
利用状态机(dk.brics.automaton.RunAutomaton),取得最后一个匹配到的状态。
getLastAcceptedState(CharSequence, int) - Method in class net.sf.jabb.util.text.StartWithMatcher
By utilizing the state machine (dk.brics.automaton.RunAutomaton), get the last accepted matching state.
getLengthCategory() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
getLoginHandlers() - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthLoginFilter
 
getLoginTimeout() - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
getLogWriter() - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
getLongValue(int) - Method in class net.sf.jabb.util.col.IntegerArray
Gets the value in specified position.
获得指定位置的值。
getLongValue(int) - Method in class net.sf.jabb.util.col.LongArray
Gets the value in specified position.
获得指定位置的值。
getLongValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getMainMenuItems() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Deprecated. 
getManager() - Static method in class net.sf.jabb.util.vfs.VfsUtility
Get a new instance of FileSystemManager.
getMap() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
Get the encapsulated Map instance.
获得最初被封装的那个Map。
getMasked() - Method in class net.sf.jabb.util.text.MaskedText
 
getMatchedKeywords() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
getMax() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
取得最大值。如果此前并没有提供任何值给统计用,则会抛出异常。
getMenu(String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Get the menu tree by the menu's name
getMenu() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Get the default menu tree
getMenuItem(String, String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Get the menu item by menu and path
getMenuItem(String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Get the menu item by path in default menu
getMessage() - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
getMin() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
取得最小值。如果此前并没有提供任何值给统计用,则会抛出异常。
getModel() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getName() - Method in class net.sf.jabb.util.thread.QueueConsumer
 
getNullable() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getOperation() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getPage() - Method in class net.sf.jabb.util.bean.JQueryGridData
 
getParameters(ServletRequest) - Static method in class net.sf.jabb.stdr.StdrUtil
Get parameters from the attribute of HTTP request.
getParentLogger() - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
getPosition() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getPrecision() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getProperty(Map, Object, Object) - Method in class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult.TemplatePropertyAccessor
 
getPropertyName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getPurgeBefore() - Method in class net.sf.jabb.util.stat.FrequencyCounterDefinition
获得保留多少时间之内的历史数据
getQueue() - Method in class net.sf.jabb.util.thread.QueueConsumer
Get the work queue.
取得工作队列。
getQueue() - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Get the work queue.
取得工作队列。
getRecords() - Method in class net.sf.jabb.util.bean.JQueryGridData
 
getReferenceId() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getRegularExpression() - Method in class net.sf.jabb.util.text.MatchingDefinition
 
getResponseData() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getRootNodeName() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getRootPath() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
getRows() - Method in class net.sf.jabb.util.bean.JQueryGridData
 
getScale() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getSchemaName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getSearchString() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getShortValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getStartSQL() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStartSqlCondition() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStartSqlConditionResource() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStartSqlResource() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getState() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
getStatus() - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
getStopSQL() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStopSqlCondition() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStopSqlConditionResource() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStopSqlResource() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
getStringDecoder() - Method in class net.sf.jabb.netty.XmlDecoder
Get the string decoder to be used by Netty.
获得给Netty用的string decoder。
getSubMenu() - Method in class net.sf.jabb.util.web.WebMenuItem
 
getSum() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
取得加总值。如果此前并没有提供任何值给统计用,则返回0。
getSupportedLocales() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
getTableName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getText() - Method in class net.sf.jabb.util.text.MaskedText
 
getText() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
getTitle() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getTitle() - Method in class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
getTitle() - Method in class net.sf.jabb.util.web.WebMenuItem
 
getTopMenuItems() - Method in class net.sf.jabb.util.web.WebMenuItem
Get the highest level of menu items.
getTotal() - Method in class net.sf.jabb.util.bean.JQueryGridData
 
getTotalDuration() - Method in class net.sf.jabb.util.perf.RunTime
Get the duration. 获得运行期间所跨的时间段。
getTotalRunTime() - Method in class net.sf.jabb.util.perf.RunTime
Get run time which is the add-up of the run duration of all threads.
获得实际的运行时间,它是所有线程的执行时间之和。
getType() - Method in interface net.sf.jabb.magnolia.auth.TypeCallback
 
getType() - Method in class net.sf.jabb.magnolia.auth.TypeCallbackImpl
 
getType() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
getType() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getTypeName() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
getTypes() - Method in class net.sf.jabb.util.text.word.Word
 
getUniqueWords() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
getUniqueWords(Object) - Method in class net.sf.jabb.util.text.word.AnalyzedTextWordLister
 
getUrl() - Method in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
getUrl() - Method in class net.sf.jabb.util.web.WebMenuItem
 
getValue() - Method in class net.sf.jabb.util.bean.KeyValueBean
 
getValue(int) - Method in class net.sf.jabb.util.col.ComparableArray
Gets the value in specified position.
获得指定位置的值。
getValue(int) - Method in class net.sf.jabb.util.col.IntegerArray
Gets the value in specified position.
获得指定位置的值。
getValue(int) - Method in class net.sf.jabb.util.col.LongArray
Gets the value in specified position.
获得指定位置的值。
getValue(int) - Method in class net.sf.jabb.util.col.NumberArray
Gets the value in specified position.
获得指定位置的值。
getValue1() - Method in class net.sf.jabb.util.bean.DoubleValueBean
 
getValue1() - Method in class net.sf.jabb.util.bean.TripleValueBean
 
getValue2() - Method in class net.sf.jabb.util.bean.DoubleValueBean
 
getValue2() - Method in class net.sf.jabb.util.bean.TripleValueBean
 
getValue3() - Method in class net.sf.jabb.util.bean.TripleValueBean
 
getValues() - Method in class net.sf.jabb.util.col.ComparableArray
Gets all the values encapsulated in this object.
获得所有值。
getValues() - Method in class net.sf.jabb.util.col.IntegerArray
Gets all the values encapsulated in this object.
获得所有值。
getValues() - Method in class net.sf.jabb.util.col.LongArray
Gets all the values encapsulated in this object.
获得所有值。
getValues() - Method in class net.sf.jabb.util.col.NumberArray
Gets all the values encapsulated in this object.
获得所有值。
getWord() - Method in class net.sf.jabb.util.text.word.Word
 
getWords() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
getWords() - Method in class net.sf.jabb.util.text.word.Dictionary
 
getWords(String) - Method in class net.sf.jabb.util.text.word.WordIdentifier
 
granularity - Variable in class net.sf.jabb.util.stat.BasicFrequencyCounter
 
granularity - Variable in class net.sf.jabb.util.stat.FrequencyCounterDefinition
 
GT - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 

H

handle(Callback[]) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthCallbackHandler
 
handle(HttpServletRequest, HttpServletResponse) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthLogin
 
HAS(Object) - Static method in class net.sf.jabb.util.exp.BooleanExpression
 
hashCode() - Method in class net.sf.jabb.util.col.ComparableArray
Gets the calculated hash code.
获得计算得到的hash值。
hashCode() - Method in class net.sf.jabb.util.col.IntegerArray
Gets the calculated hash code.
获得计算得到的hash值。
hashCode() - Method in class net.sf.jabb.util.col.LongArray
Gets the calculated hash code.
获得计算得到的hash值。
hashCode() - Method in class net.sf.jabb.util.col.NumberArray
Gets the calculated hash code.
获得计算得到的hash值。
HibernateConnectionProvider - Class in net.sf.jabb.util.db
 
HibernateConnectionProvider() - Constructor for class net.sf.jabb.util.db.HibernateConnectionProvider
 

I

id - Variable in class net.sf.jabb.util.bean.JQueryGridData.Row
 
id - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for getChildren, removeNode, renameNode, moveNode
id - Variable in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
id - Variable in class net.sf.jabb.util.stat.FrequencyCounterDefinition
 
identifiedWords - Variable in class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
includeLengthCategory - Variable in class net.sf.jabb.util.text.word.AnalyzedTextWordLister
 
IncludeTag - Class in net.sf.jabb.stdr.jsp
 
IncludeTag() - Constructor for class net.sf.jabb.stdr.jsp.IncludeTag
 
INDENT - Static variable in class net.sf.jabb.util.perf.RunTime
 
info - Variable in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
INFO - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
init(FilterConfig) - Method in class net.sf.jabb.util.web.CharsetFilter
 
InitialContextFinder - Class in net.sf.jabb.util.context
找到InitialContext,如果存在则返回缺省的,如果不存在则创建并返回一个 com.sun.jndi.fscontext.RefFSContextFactory。
InitialContextFinder() - Constructor for class net.sf.jabb.util.context.InitialContextFinder
 
initialize(Subject, CallbackHandler, Map, Map) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthJCRAuthenticationModule
 
initialize() - Method in class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
initialize(Collection<MatchingDefinition>, boolean) - Method in class net.sf.jabb.util.text.StartWithMatcher
Initialize the state machine (dk.brics.automaton.RunAutomaton).
初始化状态机(dk.brics.automaton.RunAutomaton)。
inputStream - Variable in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
instantiateMap(Class<? extends Map>) - Static method in class net.sf.jabb.util.col.PutIfAbsentMap
 
IntegerArray - Class in net.sf.jabb.util.col
Encapsulates multiple int type values into one object, which is suitable to be used as key object of Map.
把多个int类型的值封装在这一个对象里,适合用来作为Map的key。
IntegerArray(int...) - Constructor for class net.sf.jabb.util.col.IntegerArray
Constructs an IntegerArray that encapsulates specified int values.
创建一个包含这些整型值的实例。
isAutoIncrement() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isCaseSensitive() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isCopy - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for moveNode
isCopy() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
isDefinitelyWritable() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isDynamic() - Method in class net.sf.jabb.util.web.WebMenuItem
 
isEmpty() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
isFolderFirst() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
isInCondition(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Check if the database is in a specific condition by checking the result of a SQL statement
isInConditionResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Check if the database is in a specific condition by checking the result of a SQL statement loaded as a resource.
isLeaf() - Method in class net.sf.jabb.util.web.WebMenuItem
Is this menu item a leaf node in the menu tree?
isPreAuthenticated - Variable in class net.sf.jabb.magnolia.auth.ContainerPreAuthJCRAuthenticationModule
 
isReadOnly() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isRoot - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for getChildren
isRoot() - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
isRunning() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
isSearchable() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isServerPortFree(int) - Static method in class net.sf.jabb.util.net.SocketUtility
Check whether the specified server socket port is free or not.
isSigned() - Method in class net.sf.jabb.util.db.ColumnMetaData
 
isSortByName() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
isStatus() - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
isSuccessful() - Method in class net.sf.jabb.util.bean.GenericResult
 
isUnit(int) - Method in class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
isUnwrappableAs(Class) - Method in class net.sf.jabb.util.db.HibernateConnectionProvider
 
isUseAnt() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
isWrapperFor(Class<?>) - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
isWritable() - Method in class net.sf.jabb.util.db.ColumnMetaData
 

J

JndiDataSourceProvider - Class in net.sf.jabb.util.db.impl
 
JndiDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.JndiDataSourceProvider
 
JQueryGridData - Class in net.sf.jabb.util.bean
JSON data required by jqGrid.
JQueryGridData() - Constructor for class net.sf.jabb.util.bean.JQueryGridData
 
JQueryGridData.Row - Class in net.sf.jabb.util.bean
 
jQueryTheme - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
JsTreeNodeData - Class in net.sf.jabb.util.bean.jstree
Response to JsTreeRequest, expected by jsTree as JSON data.
JsTreeNodeData() - Constructor for class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
JsTreeRequest - Class in net.sf.jabb.util.bean.jstree
This class encapsulates json_data request from jsTree.
JsTreeRequest() - Constructor for class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
JsTreeResult - Class in net.sf.jabb.util.bean.jstree
Result of the operation.
JsTreeResult() - Constructor for class net.sf.jabb.util.bean.jstree.JsTreeResult
 

K

keys - Variable in class net.sf.jabb.util.col.MapGetter
 
keySet() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
KeyValueBean<K,V> - Class in net.sf.jabb.util.bean
 
KeyValueBean() - Constructor for class net.sf.jabb.util.bean.KeyValueBean
 
KeyValueBean(K, V) - Constructor for class net.sf.jabb.util.bean.KeyValueBean
 
keywordDefinitions - Variable in class net.sf.jabb.util.text.word.TextAnalyzer
 
KeywordMatcher - Class in net.sf.jabb.util.text
To check which keywords a text matches, and for each matched keyword how many occurrences are found.
检查文本当中匹配了哪些关键词,以及每个被匹配到的关键词出现了多少次。
KeywordMatcher(KeywordMatcher) - Constructor for class net.sf.jabb.util.text.KeywordMatcher
Constructs a copy which has exactly the same matching definition as the original one.
创建一个副本,这个副本与原先的对象具有完全相同匹配方式定义。
KeywordMatcher(Map<String, ? extends Object>) - Constructor for class net.sf.jabb.util.text.KeywordMatcher
Constructs a matcher object with specified keywords; When creating internal data structure, choose to consume more memory for better matching speed.
根据关键词列表,创建一个匹配器; 在创建内部数据结构的时候,选择占用更多内存,而换取速度上的提升。
KeywordMatcher(Map<String, ? extends Object>, boolean) - Constructor for class net.sf.jabb.util.text.KeywordMatcher
Constructs a matcher object with specified keywords.
根据关键词列表,创建一个匹配器。
kwMatcher - Variable in class net.sf.jabb.util.text.word.FastTextAnalyzer
 
kwMatcher - Variable in class net.sf.jabb.util.text.word.MmsegTextAnalyzer
 

L

language - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for rename
lastRunStartTime - Variable in class net.sf.jabb.util.perf.RunTime
 
LE - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 
LEFT_BRACKET - Static variable in class net.sf.jabb.stdr.view.TemplateJstlView
 
leftOperand - Variable in class net.sf.jabb.util.exp.CompareExpression
 
lengthCategory - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
lengthDefinitions - Variable in class net.sf.jabb.util.text.word.TextAnalyzer
 
listToString(Map<?, ?>) - Static method in class net.sf.jabb.util.col.MapLister
Print the content of the Map in a newly created String, entries are sorted by key, formatted as "key\t= value\n".
把Map里的内容列在String里,Map里的每个entry占一行,按key排序, 每行的格式为“key\t= value\n”。
load(String, String, Set<String>) - Method in class net.sf.jabb.util.prop.PropertiesLoader
(Internal usage only) Load properties from resource, with handling of the inclusion.
(内部使用)从指定的资源中载入properties,处理包含关系。
load(String, String) - Method in class net.sf.jabb.util.prop.PropertiesLoader
Load properties from resource, with handling of the inclusion.
从指定的资源中载入properties,处理包含关系。
load(String) - Method in class net.sf.jabb.util.prop.PropertiesLoader
Load properties from resource, with handling of the inclusion.
从指定的资源中载入properties,处理包含关系。
load(Map<? extends Object, ? extends Object>) - Static method in class net.sf.jabb.util.text.MatchingDefinition
Loads definitions from properties.
loadWithoutInclude(String) - Method in class net.sf.jabb.util.prop.PropertiesLoader
Load properties from resource, without handling of the inclusion.
从指定的资源中载入properties,不处理包含关系。
loadWords(InputStream, int) - Method in class net.sf.jabb.util.text.word.Dictionary
从流中载入一批指定类型的词条。如果某个词条在词典中已经存在,则合并。
log - Static variable in class net.sf.jabb.stdr.jsp.IncludeTag
 
LoggedException - Exception in net.sf.jabb.util.ex
The exception that had been logged by commons-logging.
LoggedException(Log, int, String, Throwable) - Constructor for exception net.sf.jabb.util.ex.LoggedException
Create a new instance, and at the same time, ensure the original exception is logged.
LoggedException(Log, String, Throwable) - Constructor for exception net.sf.jabb.util.ex.LoggedException
Create a new instance, and at the same time, ensure the original exception is logged as error.
LongArray - Class in net.sf.jabb.util.col
Encapsulates multiple int type values into one object, which is suitable to be used as key object of Map.
把多个int类型的值封装在这一个对象里,适合用来作为Map的key。
LongArray(long...) - Constructor for class net.sf.jabb.util.col.LongArray
Constructs an LongArray that encapsulates specified long values.
创建一个包含这些长整型值的实例
lookup(String) - Method in class net.sf.jabb.camel.CombinedRegistry
Looks up from all encapsulated Registry(s) one by one, and returns the first result found.
按次序从所封装的Registry中查找,返回第一个找到的结果。
lookup(String, Class<T>) - Method in class net.sf.jabb.camel.CombinedRegistry
Looks up from all encapsulated Registry(s) one by one, and returns the first result found.
按次序从所封装的Registry中查找,返回第一个找到的结果。
lookupByType(Class<T>) - Method in class net.sf.jabb.camel.CombinedRegistry
Looks up from all encapsulated Registry(s) one by one, and returns all the result found.
按次序从所封装的Registry中查找,并返回所有能找到的结果。
loopSpot - Variable in class net.sf.jabb.util.thread.RangedSequencer
 
LT - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 

M

mainMenuItems - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
map - Variable in class net.sf.jabb.drools.MapBasedFact
 
map - Variable in class net.sf.jabb.util.col.PutIfAbsentMap
 
MapBasedFact - Class in net.sf.jabb.drools
Fact template based on a map.
MapBasedFact(FactTemplate, Map<String, Object>) - Constructor for class net.sf.jabb.drools.MapBasedFact
If we already have the FactTemplate
MapBasedFact(String, Map<String, Object>) - Constructor for class net.sf.jabb.drools.MapBasedFact
If we only have the name of FactTemplate
MapBasedFact(Map<String, Object>) - Constructor for class net.sf.jabb.drools.MapBasedFact
 
MapGetter<V> - Class in net.sf.jabb.util.col
Get value from Maps according to predefined key list.
MapGetter(Object...) - Constructor for class net.sf.jabb.util.col.MapGetter
 
MapGetter(List<Object>) - Constructor for class net.sf.jabb.util.col.MapGetter
 
MapLister - Class in net.sf.jabb.util.col
An utility to list the content of the Map in a formatted manner.
把Map里的内容格式化输出的工具。
MapLister() - Constructor for class net.sf.jabb.util.col.MapLister
 
MapValueFactory<K,V> - Interface in net.sf.jabb.util.col
Factory for creating instance of Map values
mark(int) - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
markSupported() - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
masked - Variable in class net.sf.jabb.util.text.MaskedText
 
MaskedText - Class in net.sf.jabb.util.text
A POJO for storing masked text.
MaskedText() - Constructor for class net.sf.jabb.util.text.MaskedText
 
maskInUrl(String) - Static method in class net.sf.jabb.util.text.PasswordUtility
Mask password in URL.
match(CharSequence) - Method in class net.sf.jabb.util.text.KeywordMatcher
Do the matching test, find out which keywords can be matched, and how many occurrences of each keyword can be found.
进行匹配,返回所匹配上的关键词,以及匹配的次数。
match(CharSequence, int) - Method in class net.sf.jabb.util.text.StartWithMatcher
Begin from the specified position, test if the text string can be matched by any of the regular expression, return the attachment of the longest matching one.
从指定位置开始判断文本字符串是否可以被任意一个正则表达式所匹配, 返回所能匹配到的那个最长正则表达式的附件对象。
match(CharSequence) - Method in class net.sf.jabb.util.text.StartWithMatcher
Test if the text string can be matched by any of the regular expression.
match(String) - Method in class net.sf.jabb.util.text.UrlStartWithMatcher
Find out which matching string matches the URL.
matchAll(CharSequence, int) - Method in class net.sf.jabb.util.text.StartWithMatcher
Begin from the specified position, test if the text string can be matched by any of the regular expression, return list of the attachments of all the matching regular expressions.
从指定位置开始判断文本字符串是否可以被任意一个正则表达式所匹配, 返回所有能匹配到的正则表达式的附件对象的列表。
matchAll(CharSequence) - Method in class net.sf.jabb.util.text.StartWithMatcher
Test if the text string can be matched by any of the regular expression, return list of the attachments of all the matching regular expressions.
判断文本字符串是否可以被任意一个正则表达式所匹配, 返回所有能匹配到的正则表达式的附件对象的列表。
matchedKeywords - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
matcher - Variable in class net.sf.jabb.util.text.KeywordMatcher
 
matcher - Variable in class net.sf.jabb.util.text.word.TestTextAnalyzer
 
MatchingDefinition - Class in net.sf.jabb.util.text
Definition of how the matching will should be done.
MatchingDefinition() - Constructor for class net.sf.jabb.util.text.MatchingDefinition
 
matchPassword() - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthJCRAuthenticationModule
 
max(long) - Method in class net.sf.jabb.util.stat.AtomicMaxLong
Compare a value with current maximum value and make the greater one the new maximum value.
拿一个值同当前值比较,把其中大的那个设置为新的最大值。
max - Variable in class net.sf.jabb.util.stat.BasicNumberStatistics
 
maxAndGet(long) - Method in class net.sf.jabb.util.stat.AtomicMaxLong
Compare a value with current maximum value and make the greater one the new maximum value; New maximum value after comparison is returned.
拿一个值同当前值比较,把其中大的那个设置为新的最大值,返回比较之后的新的最大值。
maxBatchSize - Variable in class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
 
menuItemPaths - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
menus - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
merge(BasicNumberStatistics) - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
Merge the statistics from another object into this one
merge(Dictionary) - Method in class net.sf.jabb.util.text.word.Dictionary
将另一个字典的内容合并进来。
message - Variable in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
min(long) - Method in class net.sf.jabb.util.stat.AtomicMinLong
Compare a value with current minimum value and make the less one the new minimum value.
拿一个值同当前值比较,把其中小的那个设置为新的最小值。
min - Variable in class net.sf.jabb.util.stat.BasicNumberStatistics
 
minAndGet(long) - Method in class net.sf.jabb.util.stat.AtomicMinLong
Compare a value with current minimal value and make the less one the new minimum value; New minimum value after comparison is returned.
拿一个值同当前值比较,把其中小的那个设置为新的最小值,返回比较之后的新的最小值。
mmSeg - Variable in class net.sf.jabb.util.text.word.MmsegTextAnalyzer
 
MmsegTextAnalyzer - Class in net.sf.jabb.util.text.word
基于mmseg4j分词的文本分析器。
MmsegTextAnalyzer(int, String, Map<String, ? extends Object>, Map<Integer, ? extends Object>) - Constructor for class net.sf.jabb.util.text.word.MmsegTextAnalyzer
 
mode - Variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_INIT - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_RUNNING - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_START - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_STOP_ASAP - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_STOP_WHEN_EMPTY - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
MODE_STOPPED - Static variable in class net.sf.jabb.util.thread.QueueConsumer
 
moreSpaceForSpeed - Static variable in class net.sf.jabb.util.text.RegExpSubstitution
 
myContext - Variable in class net.sf.jabb.camel.CamelContextController
The CamelContext that hosts the CamelContextController.

N

name - Variable in class net.sf.jabb.util.thread.QueueConsumer
Name of this instance, which determines the naming of working thread.
本个实例的名字,它决定了工作线程的名字。
NAME_DECODERS - Static variable in class net.sf.jabb.camel.RegistryUtility
 
NAME_ENCODERS - Static variable in class net.sf.jabb.camel.RegistryUtility
 
NameDeduplicator - Class in net.sf.jabb.util.text
This utility class can rename names by appending numbers to avoid name duplication, it is multi-thread safe.
这个工具类可以通过给名称后面添加数字的方式来为避免重名而自动改名,它是多线程安全的。
NameDeduplicator(String) - Constructor for class net.sf.jabb.util.text.NameDeduplicator
Constructs an instance with specified postfix pattern.
创建一个实例,使用指定的后缀模板。
NameDeduplicator() - Constructor for class net.sf.jabb.util.text.NameDeduplicator
Constructs an instance with " (%d)" as the postfix pattern.
创建一个实例,以" (%d)"作为后缀模版。
nameSequencers - Variable in class net.sf.jabb.util.text.NameDeduplicator
 
NE - Static variable in interface net.sf.jabb.util.exp.CompareOperation
 
net.sf.jabb.camel - package net.sf.jabb.camel
 
net.sf.jabb.drools - package net.sf.jabb.drools
 
net.sf.jabb.magnolia.auth - package net.sf.jabb.magnolia.auth
 
net.sf.jabb.netty - package net.sf.jabb.netty
 
net.sf.jabb.quartz - package net.sf.jabb.quartz
 
net.sf.jabb.stdr - package net.sf.jabb.stdr
 
net.sf.jabb.stdr.dispatcher - package net.sf.jabb.stdr.dispatcher
 
net.sf.jabb.stdr.jsp - package net.sf.jabb.stdr.jsp
 
net.sf.jabb.stdr.view - package net.sf.jabb.stdr.view
 
net.sf.jabb.util.bean - package net.sf.jabb.util.bean
 
net.sf.jabb.util.bean.jstree - package net.sf.jabb.util.bean.jstree
 
net.sf.jabb.util.col - package net.sf.jabb.util.col
 
net.sf.jabb.util.context - package net.sf.jabb.util.context
 
net.sf.jabb.util.db - package net.sf.jabb.util.db
 
net.sf.jabb.util.db.dao - package net.sf.jabb.util.db.dao
 
net.sf.jabb.util.db.impl - package net.sf.jabb.util.db.impl
 
net.sf.jabb.util.ex - package net.sf.jabb.util.ex
 
net.sf.jabb.util.exp - package net.sf.jabb.util.exp
 
net.sf.jabb.util.net - package net.sf.jabb.util.net
 
net.sf.jabb.util.perf - package net.sf.jabb.util.perf
 
net.sf.jabb.util.prop - package net.sf.jabb.util.prop
 
net.sf.jabb.util.stat - package net.sf.jabb.util.stat
 
net.sf.jabb.util.text - package net.sf.jabb.util.text
 
net.sf.jabb.util.text.word - package net.sf.jabb.util.text.word
 
net.sf.jabb.util.thread - package net.sf.jabb.util.thread
 
net.sf.jabb.util.vfs - package net.sf.jabb.util.vfs
 
net.sf.jabb.util.web - package net.sf.jabb.util.web
 
net.sf.jabb.web.action - package net.sf.jabb.web.action
 
next() - Method in class net.sf.jabb.util.thread.RangedSequencer
Get the next number in sequence.
获得下一个序列值。
next() - Method in class net.sf.jabb.util.thread.Sequencer
Gets the next number in sequence.
获得下一个序列值。
nextId(String) - Method in class net.sf.jabb.util.text.NameDeduplicator
Get the next sequential id for specified name.
取得指定名称的下一个不重复Id值。
normalizeMatchingDefinitions(Map<String, ? extends Object>) - Static method in class net.sf.jabb.util.text.StringStartWithMatcher
Normalize matching definitions according to requirements of StartWithMatcher.
根据StartWithMatcher的需要来规范化匹配条件定义。
normalizeMatchingDefinitions(Map<String, ? extends Object>, boolean) - Static method in class net.sf.jabb.util.text.UrlStartWithMatcher
Normalize matching definitions according to requirements of StartWithMatcher.
根据StartWithMatcher的需要来规范化匹配条件定义。
normalizeTreeRequest() - Method in class net.sf.jabb.web.action.VfsTreeAction
 
NOT(BooleanExpression) - Static method in class net.sf.jabb.util.exp.BooleanExpression
创建用NOT修饰的表达式
NOT_FOUND - Static variable in class net.sf.jabb.util.web.WebMenuInterceptor
 
NumberArray<T extends Number> - Class in net.sf.jabb.util.col
Encapsulates multiple objects of Number(such as Integer, Long, Double) into one object, which is suitable to be used as the key object of Map.
把多个Number(比如Integer, Long, Double)类型的值封装在这一个对象里,适合用来作为Map的key。
NumberArray(T...) - Constructor for class net.sf.jabb.util.col.NumberArray
Constructs a NumberArray with specified value objects.
创建一个包含这些数值对象的实例。
NumberCompareExpression - Class in net.sf.jabb.util.exp
对数字(Number的子类,包括AtomicLong, AtomicInteger, Long, Integer, Double等)进行比较。 比较常见的用法是其中一个操作数用AtomicLong或AtomicInteger,另一个用Long或Integer。
NumberCompareExpression(Number, int, Number) - Constructor for class net.sf.jabb.util.exp.NumberCompareExpression
直接把待比较的数字带进去。真正的比较会发生在evaluate的时候。 调用evaluate()方法的时候传递的context参数不会被用到。

O

offset - Variable in class net.sf.jabb.util.thread.RangedSequencer
 
ONE_DAY_IN_MILLI - Static variable in class net.sf.jabb.util.text.DurationFormatter
 
OP_CREATE_NODE - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OP_GET_CHILDREN - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OP_MOVE_NODE - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OP_REMOVE_NODE - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OP_RENAME_NODE - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OP_SEARCH - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
OPERAND - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
operation - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
operation - Variable in class net.sf.jabb.util.exp.CompareExpression
 
OPERATOR_AND - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
OPERATOR_NOT - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
OPERATOR_OR - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
operatorType - Variable in class net.sf.jabb.util.exp.BooleanExpression
 
OR(BooleanExpression...) - Static method in class net.sf.jabb.util.exp.BooleanExpression
创建用OR连接的表达式
OR(Collection<? extends BooleanExpression>) - Static method in class net.sf.jabb.util.exp.BooleanExpression
创建用OR连接的表达式
OracleCachedDataSourceProvider - Class in net.sf.jabb.util.db.impl
 
OracleCachedDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.OracleCachedDataSourceProvider
 
originalViewName - Variable in class net.sf.jabb.stdr.view.TemplateJstlView
 

P

PackagedFrequencyCounter - Class in net.sf.jabb.util.stat
打包封装好的频次计数工具
PackagedFrequencyCounter(Collection<FrequencyCounterDefinition>) - Constructor for class net.sf.jabb.util.stat.PackagedFrequencyCounter
创建包含多个BasicFrequencyCounter对象的计数器组合
PackagedFrequencyCounter(FrequencyCounterDefinition...) - Constructor for class net.sf.jabb.util.stat.PackagedFrequencyCounter
创建包含多个BasicFrequencyCounter对象的计数器组合
page - Variable in class net.sf.jabb.util.bean.JQueryGridData
 
PAGE_ATTR_NAME_PREFIX_FOR_SPRING_BEAN - Static variable in class net.sf.jabb.stdr.StdrUtil
 
paramName - Variable in class net.sf.jabb.stdr.jsp.ConfigTag
 
PasswordUtility - Class in net.sf.jabb.util.text
An utility to mask and unmask passwords.
PasswordUtility() - Constructor for class net.sf.jabb.util.text.PasswordUtility
 
PlaceHolderReplacer - Class in net.sf.jabb.util.prop
It can replace the place holders in string with system or user-defined properties.
PlaceHolderReplacer() - Constructor for class net.sf.jabb.util.prop.PlaceHolderReplacer
 
pollTimeout - Variable in class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
 
pollTimeoutUnit - Variable in class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
 
populateTreeNodeData(FileObject, FileObject) - Method in class net.sf.jabb.web.action.VfsTreeAction
Populate a node.
populateTreeNodeData(FileObject, boolean, String) - Method in class net.sf.jabb.web.action.VfsTreeAction
It transforms FileObject into JsTreeNodeData.
position - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for createNode, moveNode
postHandle(HttpServletRequest, HttpServletResponse, Object, ModelAndView) - Method in class net.sf.jabb.util.web.WebMenuInterceptor
 
predefinedResultParam - Variable in class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult
These parameter names are pre-defined, they are not defined by user.
preHandle(HttpServletRequest, HttpServletResponse, Object) - Method in class net.sf.jabb.util.web.WebMenuInterceptor
 
preStop(boolean) - Method in class net.sf.jabb.util.thread.QueueConsumer
Ask the working thread to stop; This method will return immediately.
要求工作线程停止;这个方法立即返回。
prettyFormat(String, int) - Static method in class net.sf.jabb.util.text.XmlFormatter
 
prettyFormat(String) - Static method in class net.sf.jabb.util.text.XmlFormatter
 
process(Set<E>) - Method in class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Process one piece of data - this method should be overridden in subclass.
处理一份数据——这个方法应该在子类中被重载。
process(E) - Method in class net.sf.jabb.util.thread.QueueProcessor
Process one piece of data - this method should be overridden in subclass.
处理一份数据——这个方法应该在子类中被重载。
PropertiesLoader - Class in net.sf.jabb.util.prop
Utility to load properties from file; It supports both classic text properties file (.properties) format and new xml properties file (.xml) format; "*" is supported as widecard to match the file name name of all of the two formats; Inclusion of files via ".include=" syntax is also supported.
载入Properties的工具类;它支持传统properties文件格式(.properties)和新的xml格式(.xml), 也支持用“*”作为通配符同时匹配这两种格式的文件后缀,以及支持在文件中用“.include=”包含引用别的文件。
PropertiesLoader(Class<?>, boolean) - Constructor for class net.sf.jabb.util.prop.PropertiesLoader
Create a new instance that locates properties files via relative path.
创建一个新的实例,寻找properties文件的时候用相对位置。
PropertiesLoader(Class<?>) - Constructor for class net.sf.jabb.util.prop.PropertiesLoader
Create a new instance that locates properties files via relative path.
创建一个新的实例,寻找properties文件的时候用相对位置。
PropertiesLoader(boolean) - Constructor for class net.sf.jabb.util.prop.PropertiesLoader
Create a new instance that locates properties files via absolute path.
创建一个新的实例,寻找properties文件的时候用绝对位置。
PropertiesLoader() - Constructor for class net.sf.jabb.util.prop.PropertiesLoader
Create a new instance that locates properties files via absolute path.
创建一个新的实例,寻找properties文件的时候用绝对位置。
propLoader - Static variable in class net.sf.jabb.util.db.impl.C3p0DataSourceProvider
 
propLoader - Static variable in class net.sf.jabb.util.db.impl.DbcpDataSourceProvider
 
propLoader - Static variable in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
propLoader - Static variable in class net.sf.jabb.util.db.impl.OracleCachedDataSourceProvider
 
propLoader - Static variable in class net.sf.jabb.util.db.impl.ProxoolDataSourceProvider
 
PROVIDER_PROPERTY_NAME - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
ProxoolDataSourceProvider - Class in net.sf.jabb.util.db.impl
 
ProxoolDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.ProxoolDataSourceProvider
 
purge(long) - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
删除掉早于一定时间的记录
purge(long) - Method in class net.sf.jabb.util.stat.FrequencyCounter
清除过旧的历史数据
purge(Date) - Method in class net.sf.jabb.util.stat.FrequencyCounter
删除掉早于一定时间的记录
purge(long, long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
删除掉早于一定时间的记录
purge(Date, long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
删除掉早于一定时间的记录
purge(long, TimeUnit) - Method in class net.sf.jabb.util.stat.FrequencyCounter
删除掉早于一定时间的记录
purge(long) - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
 
purgeBefore - Variable in class net.sf.jabb.util.stat.BasicFrequencyCounter
 
purgeBefore - Variable in class net.sf.jabb.util.stat.FrequencyCounterDefinition
 
put(K, V) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
put(long) - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
把一个值提供给统计
putAll(Map<? extends K, ? extends V>) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
PutIfAbsentMap<K,V> - Class in net.sf.jabb.util.col
Encapsulates Map so that a new entry is put in to the Map whenever there is a get for a non-existing entry.
把Map进一步封装,使得每次get的时候,如果没有,就自动put。
PutIfAbsentMap(Map<K, V>, MapValueFactory<K, V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(Map<K, V>, Class<? extends V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructs an instance with specified Map instance and value Class.
给定Map实例以及value的类,把一个普通的Map实例封装成“每次get的时候,如果没有,就自动put”。
PutIfAbsentMap(Map<K, V>, Class<? extends V>, Object) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructs an instance with specified Map instance and value Class.
给定Map实例以及value的类,把一个普通的Map实例封装成“每次get的时候,如果没有,就自动put”。
PutIfAbsentMap(Class<? extends Map>, MapValueFactory<K, V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(Class<? extends Map>, Class<? extends V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(Class<? extends Map>, Class<? extends V>, Object) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(MapValueFactory<K, V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(Class<? extends V>) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.
PutIfAbsentMap(Class<? extends V>, Object) - Constructor for class net.sf.jabb.util.col.PutIfAbsentMap
Constructor.

Q

queue - Variable in class net.sf.jabb.util.thread.QueueConsumer
 
queue(E) - Method in class net.sf.jabb.util.thread.QueueConsumer
Put data into the queue for processing, if the queue still has space this method will return immediately without waiting for the data to be actually processed.
把待处理数据放入队列,如果队列中还有空位置则这个方法会立即返回而不是等待实际处理完成。
queue - Variable in class net.sf.jabb.util.thread.QueueConsumerGroup
 
queue(E) - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Put data into the queue for processing, if the queue still has space this method will return immediately without waiting for the data to be actually processed.
把待处理数据放入队列,如果队列中还有空位置则这个方法会立即返回而不是等待实际处理完成。
QueueBatchUniqueProcessor<E> - Class in net.sf.jabb.util.thread
A template for processing data in batch from a queue.
一个从队列中取得数据并批量处理的模板,数据一批批被取走并处理。
QueueBatchUniqueProcessor(BlockingQueue<E>, String, ExecutorService, int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance.
创建一个实例。
QueueBatchUniqueProcessor(String, ExecutorService, int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance.
创建一个实例。
QueueBatchUniqueProcessor(BlockingQueue<E>, String, int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueBatchUniqueProcessor(String, int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueBatchUniqueProcessor(BlockingQueue<E>, int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance with default name: QueueConsumer.class.getSimpleName()
创建一个实例,其名称使用缺省名称:QueueConsumer.class.getSimpleName()。
QueueBatchUniqueProcessor(int, long, TimeUnit) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance with default name: QueueConsumer.class.getSimpleName()
创建一个实例,其名称使用缺省名称:QueueConsumer.class.getSimpleName()。
QueueBatchUniqueProcessor(BlockingQueue<E>, String, ExecutorService, int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that do not wait for new data.
创建一个不等待新数据到来的实例。
QueueBatchUniqueProcessor(String, ExecutorService, int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that do not wait for new data.
创建一个不等待新数据到来的实例。
QueueBatchUniqueProcessor(BlockingQueue<E>, String, int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that uses default thread pool and do not wait for new data.
创建一个使用缺省线程池且不等待新数据到来的实例。
QueueBatchUniqueProcessor(String, int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that uses default thread pool and do not wait for new data.
创建一个使用缺省线程池且不等待新数据到来的实例。
QueueBatchUniqueProcessor(BlockingQueue<E>, int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that uses default name - QueueConsumer.class.getSimpleName(), default thread pool and do not wait for new data.
创建一个使用缺省名称(QueueConsumer.class.getSimpleName())、缺省线程池且不等待新数据到来的实例。
QueueBatchUniqueProcessor(int) - Constructor for class net.sf.jabb.util.thread.QueueBatchUniqueProcessor
Constructor to create an instance that uses default name - QueueConsumer.class.getSimpleName(), default thread pool and do not wait for new data.
创建一个使用缺省名称(QueueConsumer.class.getSimpleName())、缺省线程池且不等待新数据到来的实例。
QueueConsumer<E> - Class in net.sf.jabb.util.thread
A template for consuming data from a queue.
一个从队列中取数据进行处理的模板。
QueueConsumer(BlockingQueue<E>, String, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance.
创建一个实例。
QueueConsumer(String, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance.
创建一个实例。
QueueConsumer(BlockingQueue<E>, String) - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueConsumer(String) - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueConsumer(BlockingQueue<E>) - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance with default name and using default thread pool.
创建一个实例,使用缺省的名称和缺省的线程池。
QueueConsumer() - Constructor for class net.sf.jabb.util.thread.QueueConsumer
Constructor to create an instance with default name and using default thread pool.
创建一个实例,使用缺省的名称和缺省的线程池。
QueueConsumerGroup<E> - Class in net.sf.jabb.util.thread
A group of QueueConsumer(s) that work on on the same queue simultaneously.
一批并行处理同一个队列的QueueConsumer。
QueueConsumerGroup(BlockingQueue<E>) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Internal constructor, without specifying thread pool.
(内部用)创建实例,不指定统一的线程池。
QueueConsumerGroup(int) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Internal constructor, without specifying thread pool.
(内部用)创建实例,不指定统一的线程池。
QueueConsumerGroup(BlockingQueue<E>, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Internal constructor, specifying one thread pool for all QueueConsumers to use.
(内部用)创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(int, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Internal constructor, specifying one thread pool for all QueueConsumers to use.
(内部用)创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(BlockingQueue<E>, ExecutorService, QueueConsumer<E>...) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, specifying one thread pool for all QueueConsumers to use.
创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(int, ExecutorService, QueueConsumer<E>...) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, specifying one thread pool for all QueueConsumers to use.
创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(BlockingQueue<E>, QueueConsumer<E>...) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, without specifying thread pool.
创建实例,不指定统一的线程池。
QueueConsumerGroup(int, QueueConsumer<E>...) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, without specifying thread pool.
创建实例,不指定统一的线程池。
QueueConsumerGroup(BlockingQueue<E>, ExecutorService, Collection<? extends QueueConsumer<E>>) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, specifying one thread pool for all QueueConsumers to use.
创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(int, ExecutorService, Collection<? extends QueueConsumer<E>>) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, specifying one thread pool for all QueueConsumers to use.
创建实例,让所有的QueueConsumer统一使用指定的线程池。
QueueConsumerGroup(BlockingQueue<E>, Collection<? extends QueueConsumer<E>>) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, without specifying thread pool.
创建实例,不指定统一的线程池。
QueueConsumerGroup(int, Collection<? extends QueueConsumer<E>>) - Constructor for class net.sf.jabb.util.thread.QueueConsumerGroup
Constructor, without specifying thread pool.
创建实例,不指定统一的线程池。
QueueProcessor<E> - Class in net.sf.jabb.util.thread
A template for processing data one by one from a queue.
一个从队列中逐个取得数据进行处理的模板,数据一个一个被取走并处理。
QueueProcessor(BlockingQueue<E>, String, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance.
创建一个实例。
QueueProcessor(String, ExecutorService) - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance.
创建一个实例。
QueueProcessor(BlockingQueue<E>, String) - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueProcessor(String) - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance using default thread pool.
创建一个使用缺省线程池的实例。
QueueProcessor(BlockingQueue<E>) - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance with default name and using default thread pool.
创建一个实例,使用缺省的名称和缺省的线程池。
QueueProcessor() - Constructor for class net.sf.jabb.util.thread.QueueProcessor
Constructor to create an instance with default name and using default thread pool.
创建一个实例,使用缺省的名称和缺省的线程池。

R

range - Variable in class net.sf.jabb.util.thread.RangedSequencer
 
RangedSequencer - Class in net.sf.jabb.util.thread
It generates sequence of incremental numbers, within a range that can be specified, without repeating or missing of any number.
序列值生成器,保证不重复渐增,支持最大最小值的范围设定。
RangedSequencer(long, long, long) - Constructor for class net.sf.jabb.util.thread.RangedSequencer
Constructs an instance, with specified range and initial number.
创建一个实例,指定最小、最大、初始值。
RangedSequencer(long, long) - Constructor for class net.sf.jabb.util.thread.RangedSequencer
Constructs an instance, with specified range, and use the low boundary as initial number.
创建一个实例,指定最小、最大值,初始值就是最小值。
RangedSequencer(long) - Constructor for class net.sf.jabb.util.thread.RangedSequencer
Constructs an instance with a range of [0, Long.MAX_VALUE-1] and specified initial number.
创建一个实例,指定初始值。最小值是0,最大值是Long.MAX_VALU-1。
RangedSequencer() - Constructor for class net.sf.jabb.util.thread.RangedSequencer
Constructs an instance with a range of [0, Long.MAX_VALUE-1] and 0 as the initial number.
创建一个实例,指定初始值和最小值都是0,最大值是Long.MAX_VALUE-1。
read() - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
read(byte[]) - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
read(byte[], int, int) - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
readConfiguration() - Static method in class net.sf.jabb.util.db.ConnectionUtility
读取配置信息
recordLock - Variable in class net.sf.jabb.util.stat.BasicFrequencyCounter
 
records - Variable in class net.sf.jabb.util.bean.JQueryGridData
 
referenceId - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for createNode, moveNode
RegExpSubstitution - Class in net.sf.jabb.util.text
The utility to substitute part of the String that matches specified regular expression(s) with another specified String.
一个工具类,它可以对一个或多个正则表达式所匹配到的字符串中的内容作替换。
RegExpSubstitution(String, String) - Constructor for class net.sf.jabb.util.text.RegExpSubstitution
Constructor with one regular expression.
构造方法,用于只有一个正则表达式的情况。
RegExpSubstitution(String, String...) - Constructor for class net.sf.jabb.util.text.RegExpSubstitution
Constructor with several regular expressions.
构造方法,用于有多个正则表达式的情况。
RegExpSubstitution(String, Collection<String>) - Constructor for class net.sf.jabb.util.text.RegExpSubstitution
Constructor with several regular expressions.
构造方法,用于有多个正则表达式的情况。
registryList - Variable in class net.sf.jabb.camel.CombinedRegistry
 
RegistryUtility - Class in net.sf.jabb.camel
This utility provides convenient methods to work on Camel Registry, however CombinedRegistry is required in most of the cases.
提供方便地对Camel的Registry进行操作的方法,不过大部分的时候只有CombinedRegistry才被支持。
RegistryUtility() - Constructor for class net.sf.jabb.camel.RegistryUtility
 
remove(Object) - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
renamePattern - Variable in class net.sf.jabb.util.text.NameDeduplicator
 
replace(CharSequence, boolean) - Method in class net.sf.jabb.util.text.RegExpSubstitution
Do replacement.
进行替换。
replaceAll(CharSequence) - Method in class net.sf.jabb.util.text.RegExpSubstitution
Replace all the occurrences.
替换所有出现的地方
replaceFirst(CharSequence) - Method in class net.sf.jabb.util.text.RegExpSubstitution
Replace only the first occurrence.
只替换第一个出现的地方
replaceLast(CharSequence) - Method in class net.sf.jabb.util.text.RegExpSubstitution
Replace only the last occurrence.
替换掉最后一个出现的地方
replacement - Variable in class net.sf.jabb.util.text.RegExpSubstitution
 
replacePlaceHolders - Variable in class net.sf.jabb.util.prop.PropertiesLoader
 
replacePlaceHolders(Properties) - Method in class net.sf.jabb.util.prop.PropertiesLoader
Replace place holders in both keys and values with values defined in system properties.
replaceWithProperties(String) - Static method in class net.sf.jabb.util.prop.PlaceHolderReplacer
If running inside JBoss, it replace any occurrence of ${p} with the System.getProperty(p) value.
replaceWithProperties(String, Properties) - Static method in class net.sf.jabb.util.prop.PlaceHolderReplacer
If running inside JBoss, it replace any occurrence of ${p} with the System.getProperty(p) value.
requestData - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
reset() - Method in class net.sf.jabb.util.perf.RunTime
Reset to initial status.
回复到初始状态。
reset() - Method in class net.sf.jabb.util.stat.AtomicMaxLong
Reset to initial status.
回复到初始状态。
reset() - Method in class net.sf.jabb.util.stat.AtomicMinLong
Reset to initial status.
回复到初始状态。
reset() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
Reset to initial status.
回复到初始状态。
reset(Reader) - Method in class net.sf.jabb.util.text.word.WordIdentifier
 
reset() - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
responseData - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
ResultSetUtility - Class in net.sf.jabb.util.db
An utility to convert ResultSet to something else, such like dynamically generated beans.
ResultSetUtility(Map<String, String>) - Constructor for class net.sf.jabb.util.db.ResultSetUtility
Constructor allows overriding of column to property name mapping
ResultSetUtility() - Constructor for class net.sf.jabb.util.db.ResultSetUtility
Default constructor
reuseOrBuildBeanClass(ResultSetMetaData, Map<String, ColumnMetaData>) - Method in class net.sf.jabb.util.db.ResultSetUtility
 
RIGHT_BRACKET - Static variable in class net.sf.jabb.stdr.view.TemplateJstlView
 
rightOperand - Variable in class net.sf.jabb.util.exp.CompareExpression
 
ROOT_CONFIGURATION_FILE - Static variable in class net.sf.jabb.util.db.ConnectionUtility
 
rootNodeName - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
rootPath - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
Row(Object, Object) - Constructor for class net.sf.jabb.util.bean.JQueryGridData.Row
 
rows - Variable in class net.sf.jabb.util.bean.JQueryGridData
 
run() - Method in class net.sf.jabb.camel.CamelContextController
Starts the command processing loop, exit until "exit" command was received.
循环处理控制命令,直到收到“exit”命令。
run() - Method in class net.sf.jabb.util.thread.QueueConsumer
 
runAutomation - Variable in class net.sf.jabb.util.text.RegExpSubstitution
 
runAutomaton - Variable in class net.sf.jabb.util.text.StartWithMatcher
实现匹配状态机的引擎
RUNNING - Static variable in class net.sf.jabb.util.db.StartAndStopSQL
 
RunTime - Class in net.sf.jabb.util.perf
Record of time spent on something.
对某项工作所花时间的记录。
RunTime(String) - Constructor for class net.sf.jabb.util.perf.RunTime
Constructor.
构造方法。
RunTime() - Constructor for class net.sf.jabb.util.perf.RunTime
Construct an instance without description text.

S

scan(AnalyzedText) - Method in class net.sf.jabb.util.text.word.TestTextAnalyzer
 
scanForMenuItems() - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Scan all the beans for menu items
searchString - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for search
seg(Sentence) - Method in class net.sf.jabb.util.text.word.ChineseWordIdentifier
 
seg - Variable in class net.sf.jabb.util.text.word.MmsegTextAnalyzer
 
Sequencer - Class in net.sf.jabb.util.thread
It generates sequence of incremental numbers, ranging from 0 to Long.MAX_VALUE, without repeating or missing of any number.
生成序列数字,保证不重复渐增,范围从0到Long.MAX_VALUE,循环往复。
Sequencer(long) - Constructor for class net.sf.jabb.util.thread.Sequencer
Constructs an instance that generates numbers starting from specified value.
创建一个实例,且初始值为指定的值。
Sequencer() - Constructor for class net.sf.jabb.util.thread.Sequencer
Constructs an instance that generates numbers starting from 0.
创建一个实例,且初始值为0。
sessionFactory - Variable in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
setApplicationContext(ApplicationContext) - Method in class net.sf.jabb.quartz.AutowiringSpringBeanJobFactory
 
setApplicationContext(ApplicationContext) - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
setApplicationContext(ApplicationContext) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
setAttachment(T) - Method in class net.sf.jabb.util.bean.GenericResult
 
setAttachment(Object) - Method in class net.sf.jabb.util.perf.RunTime
Set an object to be attached to this RunTime object.
setAttachment(Object) - Method in class net.sf.jabb.util.text.MatchingDefinition
 
setAttachmentByExample(String, Object, String) - Method in class net.sf.jabb.util.text.StartWithMatcher
Set attachment object for each state, by testing which state the example string can run into.
根据示范字符串,设置各状态所对应的附件对象。
setAttr(String, Object) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setAttr(Map<String, Object>) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setAttrId(Object) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setAttrRel(Object) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setAuthority(String) - Method in class net.sf.jabb.util.web.WebMenuItem
 
setAutoIncrement(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setBeanFacotry(AutowireCapableBeanFactory) - Method in class net.sf.jabb.quartz.AutowiringSpringBeanJobFactory
Subclass should override this method to set beanFactory to somewhere globally.
setBreadcrumbs(List<WebMenuItem>) - Method in class net.sf.jabb.util.web.WebMenuItem
 
setCaseSensitive(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setCatalogName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setCell(Object) - Method in class net.sf.jabb.util.bean.JQueryGridData.Row
 
setChildren(Collection<JsTreeNodeData>) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setClassName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setClearText(String) - Method in class net.sf.jabb.util.text.MaskedText
 
setContentType(String) - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
setCopy(Boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setData(Object) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setDataSource(DataSource) - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
setDataSourceName(String) - Method in class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
setDefaultLocale(String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
setDefinitelyWritable(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setDelimiter(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
setDelimiterType(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
setDescription(String) - Method in class net.sf.jabb.util.perf.RunTime
 
setDisplaySize(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setDynamic(boolean) - Method in class net.sf.jabb.util.web.WebMenuItem
 
setErrorMessage(String) - Method in class net.sf.jabb.util.bean.GenericResult
 
setExactMatchExample(String) - Method in class net.sf.jabb.util.text.MatchingDefinition
 
setExactMatchExamples(List<String>) - Method in class net.sf.jabb.util.text.MatchingDefinition
 
setExecutorService(ExecutorService) - Method in class net.sf.jabb.util.thread.QueueConsumer
 
setFieldValue(String, Object) - Method in class net.sf.jabb.drools.MapBasedFact
 
setFieldValue(int, Object) - Method in class net.sf.jabb.drools.MapBasedFact
 
setFile(File) - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
setFileContentType(String) - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
setFileFileName(String) - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
setFileName(String) - Method in class net.sf.jabb.util.bean.StrutsUploaded
 
setFolderFirst(boolean) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setFsOptions(FileSystemOptions) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setId(Object) - Method in class net.sf.jabb.util.bean.JQueryGridData.Row
 
setId(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setId(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
setIndex(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setIsCopy(Boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setIsRoot(Boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setjQueryTheme(String) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
setKey(K) - Method in class net.sf.jabb.util.bean.KeyValueBean
 
setKeywordAttachment(Object) - Method in class net.sf.jabb.util.text.word.Word
 
setLabel(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setLabelOrName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setLanguage(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setLanguage(String) - Method in class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
setLoginHandlers(Collection<LoginHandler>) - Method in class net.sf.jabb.magnolia.auth.ContainerPreAuthLoginFilter
 
setLoginTimeout(int) - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
setLogWriter(PrintWriter) - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
setMainMenuItems(List<String>) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
Deprecated. 
setMasked(String) - Method in class net.sf.jabb.util.text.MaskedText
 
setMessage(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
setName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setName(String) - Method in class net.sf.jabb.util.thread.QueueConsumer
 
setNullable(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setOperation(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setPage(int) - Method in class net.sf.jabb.util.bean.JQueryGridData
Set current page number
setParamName(String) - Method in class net.sf.jabb.stdr.jsp.ConfigTag
 
setParamName(String) - Method in class net.sf.jabb.stdr.jsp.IncludeTag
 
setParamName(String) - Method in class net.sf.jabb.stdr.jsp.SetTag
 
setPosition(Integer) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setPrecision(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setProperty(Map, Object, Object, Object) - Method in class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult.TemplatePropertyAccessor
 
setPropertyName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setQueue(BlockingQueue<E>) - Method in class net.sf.jabb.util.thread.QueueConsumer
Use this method if you don't want the queue to be passed in from constructor.
如果你不想通过构造方法来传递队列对象,就用这个方法。
setReadOnly(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setRecords(int) - Method in class net.sf.jabb.util.bean.JQueryGridData
Set total number of records
setRecords() - Method in class net.sf.jabb.util.bean.JQueryGridData
Set number of records according to current size of the rows list.
setReferenceId(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setRegularExpression(String) - Method in class net.sf.jabb.util.text.MatchingDefinition
 
setResponseData(Object) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setRoot(Boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setRootNodeName(String) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setRootPath(String) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setScale(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setSchemaName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setSearchable(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setSearchString(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setSessionFactory(SessionFactory) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
setSigned(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setSortByName(boolean) - Method in class net.sf.jabb.web.action.VfsTreeAction
 
setStartSQL(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Multiple SQL statements is allowed if useAnt is true.
setStartSqlCondition(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
This must be a single SQL statement returning a number
setStartSqlConditionResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
The resource must contain only a single SQL statement returning a number.
setStartSqlResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Multiple SQL statements can be contained in the resource if useAnt is true.
setState(boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setState(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
setStatus(boolean) - Method in class net.sf.jabb.util.bean.jstree.JsTreeResult
 
setStopSQL(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Multiple SQL statements is allowed if useAnt is true.
setStopSqlCondition(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
This must be a single SQL statement returning a number
setStopSqlConditionResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
The resource must contain only a single SQL statement returning a number.
setStopSqlResource(String) - Method in class net.sf.jabb.util.db.StartAndStopSQL
Multiple SQL statements can be contained in the resource if useAnt is true.
setSuccessful(boolean) - Method in class net.sf.jabb.util.bean.GenericResult
 
setSupportedLocales(List<StringKeyValueBean>) - Method in class net.sf.jabb.util.web.WebApplicationConfiguration
 
setTableName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
SetTag - Class in net.sf.jabb.stdr.jsp
 
SetTag() - Constructor for class net.sf.jabb.stdr.jsp.SetTag
 
setText(String) - Method in class net.sf.jabb.util.text.MaskedText
 
setTitle(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setTitle(String) - Method in class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
setTotal(int) - Method in class net.sf.jabb.util.bean.JQueryGridData
Set total number of pages
setType(String) - Method in interface net.sf.jabb.magnolia.auth.TypeCallback
 
setType(String) - Method in class net.sf.jabb.magnolia.auth.TypeCallbackImpl
 
setType(String) - Method in class net.sf.jabb.stdr.jsp.SetTag
 
setType(String) - Method in class net.sf.jabb.util.bean.jstree.JsTreeRequest
 
setType(int) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setType(int) - Method in class net.sf.jabb.util.text.word.Word
标志这个词条属于某种类型。注意同一个词条可能同时属于多种类型。
setTypeName(String) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
setTypes(int) - Method in class net.sf.jabb.util.text.word.Word
 
setupDataSourceProviders() - Static method in class net.sf.jabb.util.db.ConnectionUtility
根据配置信息,初始化DataSourceProvider。
setUrl(String) - Method in class net.sf.jabb.stdr.view.TemplateJstlView
 
setUseAnt(boolean) - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
setValue(String) - Method in class net.sf.jabb.stdr.jsp.ConfigTag
 
setValue(V) - Method in class net.sf.jabb.util.bean.KeyValueBean
 
setValue1(V1) - Method in class net.sf.jabb.util.bean.DoubleValueBean
 
setValue1(V1) - Method in class net.sf.jabb.util.bean.TripleValueBean
 
setValue2(V2) - Method in class net.sf.jabb.util.bean.DoubleValueBean
 
setValue2(V2) - Method in class net.sf.jabb.util.bean.TripleValueBean
 
setValue3(V3) - Method in class net.sf.jabb.util.bean.TripleValueBean
 
setValueFrom(String) - Method in class net.sf.jabb.stdr.jsp.ConfigTag
 
setWebApplicationConfiguration(WebApplicationConfiguration) - Method in class net.sf.jabb.util.web.WebMenuInterceptor
 
setWord(String) - Method in class net.sf.jabb.util.text.word.Word
 
setWritable(boolean) - Method in class net.sf.jabb.util.db.ColumnMetaData
 
shutdown() - Method in class net.sf.jabb.quartz.ConnectionUtilityConnectionProvider
 
size() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
skip(long) - Method in class net.sf.jabb.util.vfs.CleanUpOnCloseVfsInputStream
 
SocketUtility - Class in net.sf.jabb.util.net
Utility for Socket related functions.
SocketUtility() - Constructor for class net.sf.jabb.util.net.SocketUtility
 
sortByName - Variable in class net.sf.jabb.web.action.VfsTreeAction
 
splitURL(String) - Static method in class net.sf.jabb.util.text.UrlStartWithMatcher
将URL拆成两块:反序后的斜线前面的主机、端口和帐号;斜线后面的路径和参数。 比如对于http://www.news.com/read/daily/headline.html,返回的是: moc.swen.www和read/daily/headline.html两项。
start() - Method in class net.sf.jabb.camel.CamelContextController
Starts the CamelContext and the CamelContextController.
启动CamelContext及CamelContextController。
start() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
start() - Method in class net.sf.jabb.util.perf.RunTime
Starts the calculation of run time.
start() - Method in class net.sf.jabb.util.thread.QueueConsumer
Start working thread; This method will return immediately without waiting for anything to be actually processed.
启动工作处理线程,这个方法立即返回,而不等待任何实际处理发生。
start() - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Start all QueueConsumer(s) one by one.
逐个启动所有Consumer。
StartAndStopSQL - Class in net.sf.jabb.util.db
Helper class to execute SQL when Spring context starts and stops.
StartAndStopSQL() - Constructor for class net.sf.jabb.util.db.StartAndStopSQL
 
startDetail(String) - Method in class net.sf.jabb.util.perf.RunTime
Starts the calculation of run time of a detail record.
开始对一个详细记录的计时,它必须与结束计时在同一个线程中被调用。
STARTING - Static variable in class net.sf.jabb.util.db.StartAndStopSQL
 
startSQL - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
startSqlCondition - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
startSqlConditionResource - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
startSqlResource - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
startTagEndingChar - Static variable in class net.sf.jabb.netty.XmlDecoder
 
StartWithMatcher - Class in net.sf.jabb.util.text
To test which regular expression among several others can be matched by a given string in the manner of "start with".
用来检查某一个字符串能同一组正则表达式中的哪一个符合“以此开头”形式的匹配。
StartWithMatcher(StartWithMatcher) - Constructor for class net.sf.jabb.util.text.StartWithMatcher
Create a copy, the copy will have exactly the same matching definitions as the original copy.
创建一个副本,这个副本与原先的对象具有完全相同匹配方式。
StartWithMatcher(Collection<MatchingDefinition>) - Constructor for class net.sf.jabb.util.text.StartWithMatcher
Create an instance according to matching definitions, when creating internal data structure, choose to consume more memory for better matching speed.
根据匹配方式定义创建一个新的对象实例; 在创建内部数据结构的时候,选择占用更多内存,而换取速度上的提升。
StartWithMatcher(Collection<MatchingDefinition>, boolean) - Constructor for class net.sf.jabb.util.text.StartWithMatcher
Create an instance according to matching definitions.
根据匹配方式定义创建一个新的对象实例。
state - Variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
"closed" or "open", it should be null for those without child nodes"
state - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
STATE_CLOSED - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
STATE_OPEN - Static variable in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
stateIsClosed() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
stateIsOpen() - Method in class net.sf.jabb.util.bean.jstree.JsTreeNodeData
 
stateNames - Static variable in class net.sf.jabb.util.db.StartAndStopSQL
 
statistics - Variable in class net.sf.jabb.util.perf.RunTime
 
status - Variable in class net.sf.jabb.util.bean.jstree.JsTreeResult
true for success, false for failure.
StdrUtil - Class in net.sf.jabb.stdr
 
StdrUtil() - Constructor for class net.sf.jabb.stdr.StdrUtil
 
stop() - Method in class net.sf.jabb.util.db.StartAndStopSQL
 
stop() - Method in class net.sf.jabb.util.thread.QueueConsumer
Stop working thread after the queue is empty; This method will not return until working thread finishes.
等待队列处理空了之后停止处理线程,这个方法会等到工作处理线程结束才返回。
stop(boolean) - Method in class net.sf.jabb.util.thread.QueueConsumer
Stop working thread; This method will not return until working thread finishes.
停止处理线程,这个方法会等到工作处理线程结束才返回。
stop(boolean) - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Stop all the working threads one by one; This method will not return until all threads are stopped.
逐个停止所工作线程,这个方法会等到所有工作线程结束才返回。
stop() - Method in class net.sf.jabb.util.thread.QueueConsumerGroup
Stop working threads after the queue is empty; This method will not return until working thread finishes.
让所有处理线程在队列处理空了之后停止,这个方法会等到所有工作处理线程结束才返回。
STOPPING - Static variable in class net.sf.jabb.util.db.StartAndStopSQL
 
stopSQL - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
stopSqlCondition - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
stopSqlConditionResource - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
stopSqlResource - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 
stringDecoder - Variable in class net.sf.jabb.netty.XmlDecoder
 
stringEncoderSeq - Static variable in class net.sf.jabb.camel.XmlSocketUtility
 
StringKeyValueBean - Class in net.sf.jabb.util.bean
Short for KeyValueBean
StringKeyValueBean() - Constructor for class net.sf.jabb.util.bean.StringKeyValueBean
 
StringKeyValueBean(String, String) - Constructor for class net.sf.jabb.util.bean.StringKeyValueBean
 
StringStartWithMatcher - Class in net.sf.jabb.util.text
Given a text string to be tested, and list of matching strings, find out which matching string the text string starts with.
给定一个待检查的文本字符串,以及一批开头匹配字符串,看看待检查的文本字符串以哪个匹配字符串开头。
StringStartWithMatcher(Map<String, ? extends Object>) - Constructor for class net.sf.jabb.util.text.StringStartWithMatcher
Create a new instance according to heading strings and their corresponding attachment objects.
根据开头匹配字符串、开头匹配字符串所对应的附件对象,创建一个新的实例。
StringStartWithMatcher(Map<String, ? extends Object>, boolean) - Constructor for class net.sf.jabb.util.text.StringStartWithMatcher
Create a new instance according to heading strings and their corresponding attachment objects.
根据开头匹配字符串、开头匹配字符串所对应的附件对象,创建一个新的实例。
StringStartWithMatcher(StringStartWithMatcher) - Constructor for class net.sf.jabb.util.text.StringStartWithMatcher
Create a copy, the copy will have exactly the same matching definitions as the original copy.
创建一个副本,这个副本与原先的对象具有完全相同匹配方式。
stripTopLevelTag(String) - Static method in class net.sf.jabb.camel.XmlSocketUtility
Strips off the top level tag from XML string.
从XML字符串中去掉最上层的Tag。
structureLock - Variable in class net.sf.jabb.util.col.PutIfAbsentMap
 
StrutsUploaded - Class in net.sf.jabb.util.bean
For Struts2 Fileupload.
StrutsUploaded() - Constructor for class net.sf.jabb.util.bean.StrutsUploaded
 
subMenu - Variable in class net.sf.jabb.util.web.WebMenuItem
 
successful - Variable in class net.sf.jabb.util.bean.GenericResult
Whether the request was processed successfully.
是否成功处理了请求。
sum - Variable in class net.sf.jabb.util.stat.BasicNumberStatistics
 
supportedLocales - Variable in class net.sf.jabb.util.web.WebApplicationConfiguration
 
supportsAggressiveRelease() - Method in class net.sf.jabb.util.db.HibernateConnectionProvider
 

T

TEMPLATE_PARAMETER_MAP - Static variable in class net.sf.jabb.stdr.StdrUtil
The attribute name in request context to pass the parameters: net_sf_jabb_stdr_templateParameterMap
TemplateDispatcherResult - Class in net.sf.jabb.stdr.dispatcher
The dispatcher to replace the default dispatcher of Struts2.
TemplateDispatcherResult() - Constructor for class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult
 
TemplateDispatcherResult(String) - Constructor for class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult
 
TemplateDispatcherResult.TemplatePropertyAccessor - Class in net.sf.jabb.stdr.dispatcher
This is the class used to avoid ognl.NoSuchPropertyException when the framework tries to set parameters by ognl.
TemplateJstlView - Class in net.sf.jabb.stdr.view
An extended JstlView that understands template descriptor in the view name.
TemplateJstlView() - Constructor for class net.sf.jabb.stdr.view.TemplateJstlView
 
TemplateJstlView(String) - Constructor for class net.sf.jabb.stdr.view.TemplateJstlView
 
TemplateJstlView(String, MessageSource) - Constructor for class net.sf.jabb.stdr.view.TemplateJstlView
 
TemplatePropertyAccessor() - Constructor for class net.sf.jabb.stdr.dispatcher.TemplateDispatcherResult.TemplatePropertyAccessor
 
TestTextAnalyzer - Class in net.sf.jabb.util.text.word
文本分析器。
TestTextAnalyzer(Dictionary, boolean) - Constructor for class net.sf.jabb.util.text.word.TestTextAnalyzer
 
text - Variable in class net.sf.jabb.util.text.MaskedText
 
text - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
TextAnalyzer - Class in net.sf.jabb.util.text.word
Text Analyzer; Result of the analysis will be hold in AnalyzedText.
文本分析器;分析的结果会放在AnalyzedText中。
TextAnalyzer(String, Map<String, ? extends Object>, Map<Integer, ? extends Object>) - Constructor for class net.sf.jabb.util.text.word.TextAnalyzer
Constructor that will be used internally.
仅供内部使用的构造方法。
thread - Variable in class net.sf.jabb.util.thread.QueueConsumer
The working thread.
工作线程。
threadPool - Variable in class net.sf.jabb.util.thread.QueueConsumer
Effective thread pool of this instance.
本个实例实际使用的线程池。
threadPool - Variable in class net.sf.jabb.util.thread.QueueConsumerGroup
 
title - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for createNode, renameNode
title - Variable in class net.sf.jabb.util.web.WebMenuItem
 
TitleForLanguage - Class in net.sf.jabb.util.bean.jstree
 
TitleForLanguage() - Constructor for class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
TitleForLanguage(String, String) - Constructor for class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
toString() - Method in class net.sf.jabb.drools.MapBasedFact
 
toString() - Method in class net.sf.jabb.util.bean.DoubleValueBean
 
toString() - Method in class net.sf.jabb.util.bean.GenericResult
 
toString() - Method in class net.sf.jabb.util.bean.jstree.TitleForLanguage
 
toString() - Method in class net.sf.jabb.util.bean.TripleValueBean
 
toString() - Method in class net.sf.jabb.util.col.ComparableArray
 
toString() - Method in class net.sf.jabb.util.col.IntegerArray
 
toString() - Method in class net.sf.jabb.util.col.LongArray
 
toString() - Method in class net.sf.jabb.util.col.NumberArray
 
toString() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
toString() - Method in class net.sf.jabb.util.exp.BooleanExpression
转成字符串表示。子类可以重载这个方法。
toString() - Method in class net.sf.jabb.util.exp.CompareExpression
 
toString() - Method in class net.sf.jabb.util.perf.RunTime
Output to a TAB separated text which can be pasted into Excel.
输出成可以贴进Excel的由TAB分隔的文本。
toString(boolean) - Method in class net.sf.jabb.util.perf.RunTime
 
toString() - Method in class net.sf.jabb.util.stat.BasicFrequencyCounter
转成String
toString() - Method in class net.sf.jabb.util.stat.BasicNumberStatistics
 
toString() - Method in class net.sf.jabb.util.stat.PackagedFrequencyCounter
转为字符串
toString() - Method in class net.sf.jabb.util.text.MatchingDefinition
 
toString() - Method in class net.sf.jabb.util.text.word.AnalyzedText
 
toString() - Method in class net.sf.jabb.util.web.WebMenuItem
 
total - Variable in class net.sf.jabb.util.bean.JQueryGridData
 
totalUpdateCount(int[]) - Static method in class net.sf.jabb.util.db.ConnectionUtility
Summarize the returned array of Statement.executeBatch()
TRACE - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
TripleValueBean<V1,V2,V3> - Class in net.sf.jabb.util.bean
 
TripleValueBean() - Constructor for class net.sf.jabb.util.bean.TripleValueBean
 
TripleValueBean(V1, V2, V3) - Constructor for class net.sf.jabb.util.bean.TripleValueBean
 
TRUE - Static variable in class net.sf.jabb.util.exp.BooleanExpression
 
TryDataSourceProvider - Class in net.sf.jabb.util.db.impl
一个一个尝试。
TryDataSourceProvider() - Constructor for class net.sf.jabb.util.db.impl.TryDataSourceProvider
 
type - Variable in class net.sf.jabb.util.bean.jstree.JsTreeRequest
for createNode
TYPE_CURRENT_MENU_ITEM - Static variable in class net.sf.jabb.stdr.StdrUtil
 
TYPE_FAST - Static variable in class net.sf.jabb.util.text.word.TextAnalyzer
使用KeywordMatcher与自定义的字典表进行分词(试验中,尚不完善)
TYPE_IGNORE - Static variable in class net.sf.jabb.util.text.word.Word
需先剔除然后再进行分词处理的字符
Characters that should be removed before word identifying
TYPE_KEYWORD - Static variable in class net.sf.jabb.util.text.word.Word
需要提取出来的关键词
Keywords that need to be identified
TYPE_MMSEG_COMPLEX - Static variable in class net.sf.jabb.util.text.word.TextAnalyzer
使用com.chenlb.mmseg4j.ComplexSeg进行分词
TYPE_MMSEG_MAXWORD - Static variable in class net.sf.jabb.util.text.word.TextAnalyzer
使用com.chenlb.mmseg4j.MaxWordSeg进行分词
TYPE_MMSEG_SIMPLE - Static variable in class net.sf.jabb.util.text.word.TextAnalyzer
使用com.chenlb.mmseg4j.SimpleSeg进行分词
TYPE_NORMAL - Static variable in class net.sf.jabb.util.text.word.Word
正常词汇
Normal word
TYPE_SEPARATOR - Static variable in class net.sf.jabb.util.text.word.Word
词与词之间的分隔字符
Characters that separate adjacent words
TYPE_SPRING_BEAN_PREFIX - Static variable in class net.sf.jabb.stdr.StdrUtil
 
TYPE_WEB_APP_CONFIG - Static variable in class net.sf.jabb.stdr.StdrUtil
 
TypeCallback - Interface in net.sf.jabb.magnolia.auth
 
TypeCallbackImpl - Class in net.sf.jabb.magnolia.auth
 
TypeCallbackImpl() - Constructor for class net.sf.jabb.magnolia.auth.TypeCallbackImpl
 

U

uniqueWords - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
UNKNOWN - Static variable in class net.sf.jabb.util.db.StartAndStopSQL
 
unmaskInUrl(String, String) - Static method in class net.sf.jabb.util.text.PasswordUtility
Unmask password in URL.
unwrap(Class<T>) - Method in class net.sf.jabb.util.db.HibernateConnectionProvider
 
unwrap(Class<T>) - Method in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
update(T) - Method in class net.sf.jabb.util.db.dao.AbstractHibernateDao
 
url - Variable in class net.sf.jabb.util.db.impl.DirectDataSourceConfiguration
 
url - Variable in class net.sf.jabb.util.db.impl.DriverManagerDataSource
 
url - Variable in class net.sf.jabb.util.web.WebMenuItem
 
URL_POSTFIX_PARAMETER - Static variable in class net.sf.jabb.stdr.StdrUtil
 
URL_PREFIX_PARAMETER - Static variable in class net.sf.jabb.stdr.StdrUtil
 
UrlStartWithMatcher - Class in net.sf.jabb.util.text
Given a text string to be tested, and list of matching strings, find out which matching string the text string starts with.
给定一个待检查的URL字符串,以及一批开头匹配字符串,看看待检查的URL字符串以哪个匹配字符串开头。
UrlStartWithMatcher(Map<String, ? extends Object>) - Constructor for class net.sf.jabb.util.text.UrlStartWithMatcher
Create a new instance according to matching strings and their corresponding attachment objects.
根据匹配字符串、匹配字符串所对应的附件对象,创建一个新的实例。
UrlStartWithMatcher(Map<String, ? extends Object>, boolean) - Constructor for class net.sf.jabb.util.text.UrlStartWithMatcher
Create a new instance according to matching strings and their corresponding attachment objects.
根据匹配字符串、匹配字符串所对应的附件对象,创建一个新的实例。
UrlStartWithMatcher(UrlStartWithMatcher) - Constructor for class net.sf.jabb.util.text.UrlStartWithMatcher
Create a copy, the copy will have exactly the same matching definitions as the original copy.
创建一个副本,这个副本与原先的对象具有完全相同匹配方式。
useAnt - Variable in class net.sf.jabb.util.db.StartAndStopSQL
 

V

value - Variable in class net.sf.jabb.stdr.jsp.ConfigTag
 
valueFactory - Variable in class net.sf.jabb.util.col.PutIfAbsentMap
 
valueFrom - Variable in class net.sf.jabb.stdr.jsp.ConfigTag
 
values - Variable in class net.sf.jabb.util.col.ComparableArray
 
values - Variable in class net.sf.jabb.util.col.IntegerArray
 
values - Variable in class net.sf.jabb.util.col.LongArray
 
values - Variable in class net.sf.jabb.util.col.NumberArray
 
values() - Method in class net.sf.jabb.util.col.PutIfAbsentMap
 
VfsTreeAction - Class in net.sf.jabb.web.action
The action class to manipulate commons-vfs files.
VfsTreeAction() - Constructor for class net.sf.jabb.web.action.VfsTreeAction
 
VfsUtility - Class in net.sf.jabb.util.vfs
Wrapper on top of commons-vfs.
VfsUtility() - Constructor for class net.sf.jabb.util.vfs.VfsUtility
 

W

WARN - Static variable in exception net.sf.jabb.util.ex.LoggedException
 
WEB_APP_CONFIG_PARAMETER - Static variable in class net.sf.jabb.stdr.StdrUtil
 
WebApplicationConfiguration - Class in net.sf.jabb.util.web
Configuration information of a web application
WebApplicationConfiguration() - Constructor for class net.sf.jabb.util.web.WebApplicationConfiguration
 
webApplicationConfiguration - Variable in class net.sf.jabb.util.web.WebMenuInterceptor
 
WebMenu - Annotation Type in net.sf.jabb.util.web
This annotation marks a method in Spring MVC to be associated with a menu item
WebMenuInterceptor - Class in net.sf.jabb.util.web
To find out current WebMenuItem and set to request context, and also to set WebApplicationConfiguration into request context.
WebMenuInterceptor() - Constructor for class net.sf.jabb.util.web.WebMenuInterceptor
 
WebMenuItem - Class in net.sf.jabb.util.web
Data structure that holds menu item information.
WebMenuItem() - Constructor for class net.sf.jabb.util.web.WebMenuItem
 
webMenuItemCache - Variable in class net.sf.jabb.util.web.WebMenuInterceptor
 
wIdentifier - Variable in class net.sf.jabb.util.text.word.FastTextAnalyzer
 
Word - Class in net.sf.jabb.util.text.word
词典里的中文词条。
Word() - Constructor for class net.sf.jabb.util.text.word.Word
 
Word(Word) - Constructor for class net.sf.jabb.util.text.word.Word
创建一个实例,其内容是另一个实例的拷贝。 注意,keywordAttachment不会被拷贝,它会被引用。
WordIdentifier - Class in net.sf.jabb.util.text.word
 
WordIdentifier(ChineseWordIdentifier) - Constructor for class net.sf.jabb.util.text.word.WordIdentifier
 
words - Variable in class net.sf.jabb.util.text.word.AnalyzedText
 
words - Variable in class net.sf.jabb.util.text.word.Dictionary
 

X

XmlDecoder - Class in net.sf.jabb.netty
A decoder for Netty to handle XML messages.
使得Netty能够对XML文本消息进行分段的decoder。
XmlDecoder(int, String, Charset) - Constructor for class net.sf.jabb.netty.XmlDecoder
Constructor after which both its XmlDecoder.getFrameDecoder() and XmlDecoder.getStringDecoder() methods should be called to get two decoders for Netty.
创建一个实例,创建好之后,它的XmlDecoder.getFrameDecoder()方法和XmlDecoder.getStringDecoder()方法都应该被调用 以获得给Netty用的两个decoder。
XmlDecoder.XmlStringDecoder - Class in net.sf.jabb.netty
Further process the messages already processed by FrameDecoder to make it clean XML text messages.
把经过FrameDecoder处理过后的消息,进一步加工为头尾完整干净的XML文本。
XmlFormatter - Class in net.sf.jabb.util.text
Pretty formatting XML.
XmlFormatter() - Constructor for class net.sf.jabb.util.text.XmlFormatter
 
xmlFrameDecoderSeq - Static variable in class net.sf.jabb.camel.XmlSocketUtility
 
XmlSocketUtility - Class in net.sf.jabb.camel
This utility makes it convenient to provide XML protocol based socket interface (for example, SOAP over TCP rather than HTTP) in Camel.
这个工具提供一些方便使用的方法,从而可以利用Camel提供基于XML的Socket接口 (比如SOAP over TCP而不是HTTP)。
XmlSocketUtility() - Constructor for class net.sf.jabb.camel.XmlSocketUtility
 
XmlStringDecoder(String, Charset) - Constructor for class net.sf.jabb.netty.XmlDecoder.XmlStringDecoder
Constructor.
创建一个实例。
xmlStringDecoderSeq - Static variable in class net.sf.jabb.camel.XmlSocketUtility
 
A B C D E F G H I J K L M N O P Q R S T U V W X 

Copyright © 2014. All Rights Reserved.