-
Framework.StopWatch.split()
Returns the number of milliseconds since the last fire call.
@return the number of milliseconds since the last fire call.
-
br.com.visualmidia.business.GDDate.split()
-
br.msf.commons.lang.EnhancedStringBuilder.split()
-
cc.mallet.types.InstanceList.split()
Shuffles the elements of this list among several smaller lists.
@param proportions A list of numbers (not necessarily summing to 1) which,when normalized, correspond to the proportion of elements in each returned sublist. This method (and all the split methods) do not transfer the Instance weights to the resulting InstanceLists.
@param r The source of randomness to use in shuffling.
@return one InstanceList
for each element of proportions
-
com.alibaba.wasp.client.WaspAdmin.split()
Split a table or an individual entityGroup. Asynchronous operation.
@param tableNameOrEntityGroupName table to entityGroup to split
@param splitPoint the explicit position to split on
@throws java.io.IOException
@throws InterruptedException
-
com.asakusafw.compiler.flow.processor.operator.MasterJoinFlowFactory.split()
分解する。
@param joined 結合結果
@return 生成した演算子オブジェクト
-
com.beust.jcommander.converters.IParameterSplitter.split()
-
com.browseengine.bobo.api.FacetSpec.FacetSortSpec.split()
-
com.cloudera.sqoop.mapreduce.db.DBSplitter.split()
-
com.cloudera.sqoop.mapreduce.db.TextSplitter.split()
-
com.google.common.base.Splitter.split()
Splits {@code sequence} into string components and makes them availablethrough an {@link Iterator}, which may be lazily evaluated.
@param sequence the sequence of characters to split
@return an iteration over the segments split from the parameter.
-
com.google.gwt.regexp.shared.RegExp.split()
Splits the input string around matches of the regular expression. If the regular expression is completely empty, splits the input string into its constituent characters. If the regular expression is not empty but matches an empty string, the results are not well defined.
@param input the string to be split.
@return the strings split off, any of which may be empty.
-
com.google.gwt.thirdparty.guava.common.base.Splitter.split()
-
com.google.gwt.user.client.ui.Label.split()
-
com.hp.hpl.jena.tdb.index.bplustree.BPTreeRecords.split()
Split: place old high half in 'other'. Return the new (upper) BPTreeRecords(BPTreePage). Split is the high end of the low page.
-
com.intellij.openapi.fileEditor.impl.EditorWindow.split()
-
com.projity.pm.assignment.Assignment.split()
-
com.volantis.styling.impl.engine.PropertySplitter.split()
Split the supplied properties into groups base on their priority.
@param properties The properties to split.
@return The prioritised properties.
-
com.volantis.styling.impl.engine.PropertySplitterImpl.split()
-
de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash.CASHInterval.split()
Splits this interval into 2 children.
-
edu.umd.cs.findbugs.util.SplitCamelCaseIdentifier.split()
Split the identifier into words.
@return Collection of words in the identifier
-
ij.plugin.filter.RGBStackSplitter.split()
Splits the specified RGB image or stack into three 8-bit grayscale images or stacks.
-
info.ata4.unity.cli.extract.AssetExtractor.split()
-
java.lang.String.split()
Splits this string around matches of the given
regular expression.
The array returned by this method contains each substring of this string that is terminated by another substring that matches the given expression or is terminated by the end of the string. The substrings in the array are in the order in which they occur in this string. If the expression does not match any part of the input then the resulting array has just one element, namely this string.
The limit parameter controls the number of times the pattern is applied and therefore affects the length of the resulting array. If the limit n is greater than zero then the pattern will be applied at most n - 1 times, the array's length will be no greater than n, and the array's last entry will contain all input beyond the last matched delimiter. If n is non-positive then the pattern will be applied as many times as possible and the array can have any length. If n is zero then the pattern will be applied as many times as possible, the array can have any length, and trailing empty strings will be discarded.
The string "boo:and:foo", for example, yields the following results with these parameters:
Regex | Limit | Result |
: | 2 | { "boo", "and:foo" } |
: | 5 | { "boo", "and", "foo" } |
: | -2 | { "boo", "and", "foo" } |
o | 5 | { "b", "", ":and:f", "", "" } |
o | -2 | { "b", "", ":and:f", "", "" } |
o | 0 | { "b", "", ":and:f" } |
An invocation of this method of the form str.split(regex, n) yields the same result as the expression
{@link java.util.regex.Pattern}. {@link java.util.regex.Pattern#compile compile}(regex). {@link java.util.regex.Pattern#split(java.lang.CharSequence,int) split}(str, n)
@param regex the delimiting regular expression
@param limit the result threshold, as described above
@return the array of strings computed by splitting this stringaround matches of the given regular expression
@throws PatternSyntaxException if the regular expression's syntax is invalid
@see java.util.regex.Pattern
@since 1.4
@spec JSR-51
-
java.util.regex.Pattern.split()
Splits the given input sequence around matches of this pattern.
The array returned by this method contains each substring of the input sequence that is terminated by another subsequence that matches this pattern or is terminated by the end of the input sequence. The substrings in the array are in the order in which they occur in the input. If this pattern does not match any subsequence of the input then the resulting array has just one element, namely the input sequence in string form.
The limit parameter controls the number of times the pattern is applied and therefore affects the length of the resulting array. If the limit n is greater than zero then the pattern will be applied at most n - 1 times, the array's length will be no greater than n, and the array's last entry will contain all input beyond the last matched delimiter. If n is non-positive then the pattern will be applied as many times as possible and the array can have any length. If n is zero then the pattern will be applied as many times as possible, the array can have any length, and trailing empty strings will be discarded.
The input "boo:and:foo", for example, yields the following results with these parameters:
Regex | Limit | Result |
: | 2 | { "boo", "and:foo" } |
: | 5 | { "boo", "and", "foo" } |
: | -2 | { "boo", "and", "foo" } |
o | 5 | { "b", "", ":and:f", "", "" } |
o | -2 | { "b", "", ":and:f", "", "" } |
o | 0 | { "b", "", ":and:f" } |
@param input The character sequence to be split
@param limit The result threshold, as described above
@return The array of strings computed by splitting the inputaround matches of this pattern
-
net.sourceforge.cruisecontrol.util.TdTimer.split()
Note that split returns the amount of time since the last time you called split. It does NOT return the time since you started.
@return long time in milliseconds
-
org.antlr.v4.runtime.tree.pattern.ParseTreePatternMatcher.split()
Split {@code = ;} into 4 chunks for tokenizing by {@link #tokenize}.
-
org.apache.cassandra.db.marshal.CompositeType.split()
-
org.apache.cassandra.db.marshal.TupleType.split()
Split a tuple value into its component values.
-
org.apache.cassandra.dht.AbstractBounds.split()
Given token T and AbstractBounds ?L,R], returns Pair(?L,T], ?T,R]) (where ? means that the same type of Bounds is returned -- Range or Bounds -- as the original.) The original AbstractBounds must contain the token T. If the split would cause one of the left or right side to be empty, it will be null in the result pair.
-
org.apache.cassandra.utils.MerkleTree.split()
Splits the range containing the given token, if no tree limits would be violated. If the range would be split to a depth below hashdepth, or if the tree already contains maxsize subranges, this operation will fail.
@return True if the range was successfully split.
-
org.apache.commons.lang.time.StopWatch.split()
Split the time.
This method sets the stop time of the watch to allow a time to be extracted. The start time is unaffected, enabling {@link #unsplit()} to continue the timing from the original start point.
@throws IllegalStateException if the StopWatch is not running.
-
org.apache.commons.lang3.time.StopWatch.split()
Split the time.
This method sets the stop time of the watch to allow a time to be extracted. The start time is unaffected, enabling {@link #unsplit()} to continue the timing from the original start point.
@throws IllegalStateException if the StopWatch is not running.
-
org.apache.hadoop.hbase.client.Admin.split()
Split a table. Asynchronous operation.
@param tableName table to split
@throws IOException if a remote or network exception occurs
@throws InterruptedException
-
org.apache.hadoop.hbase.client.HBaseAdmin.split()
Split a table or an individual region. Asynchronous operation.
@param tableNameOrRegionName table or region to split
@throws IOException if a remote or network exception occurs
@throws InterruptedException
-
org.apache.hadoop.hbase.util.RegionSplitter.HexStringSplit.split()
-
org.apache.hadoop.hbase.util.RegionSplitter.SplitAlgorithm.split()
-
org.apache.hadoop.hbase.util.RegionSplitter.UniformSplit.split()
-
org.apache.hadoop.security.UnixUserGroupInformation.split()
-
org.apache.hadoop.security.UserGroupInformation.split()
-
org.apache.james.mailbox.model.MessageRange.split()
Tries to split the given {@link MessageRange} to a {@link List} of {@link MessageRange}'s which select only a max amount of items. This only work for {@link MessageRange}'s with {@link Type} of {@link Type#RANGE}.
@param maxItems
@return ranges
-
org.apache.oro.text.perl.Perl5Util.split()
Splits a String into strings that are appended to a List, but no more than a specified limit. The String is split using a regular expression as the delimiter. The regular expression is a pattern specified in Perl5 native format:
[m]/pattern/[i][m][s][x]
The
m
prefix is optional and the meaning of the optional trailing options are:
- i
- case insensitive match
- m
- treat the input as consisting of multiple lines
- s
- treat the input as consisting of a single line
- x
- enable extended expression syntax incorporating whitespace and comments
As with Perl, any non-alphanumeric character can be used in lieu of the slashes.
The limit parameter causes the string to be split on at most the first limit - 1 number of pattern occurences.
Of special note is that this split method performs EXACTLY the same as the Perl split() function. In other words, if the split pattern contains parentheses, additional Vector elements are created from each of the matching subgroups in the pattern. Using an example similar to the one from the Camel book:
split(list, "/([,-])/", "8-12,15,18")
produces the Vector containing:
{ "8", "-", "12", ",", "15", ",", "18" }
The {@link org.apache.oro.text.regex.Util#split Util.split()} methoddoes NOT implement this particular behavior because it is intended to be usable with Pattern instances other than Perl5Pattern.
@param results A List
to which the substrings of the input that occur between the regular expression delimiter occurences are appended. The input will not be split into any more substrings than the specified limit. A way of thinking of this is that only the first limit - 1 matches of the delimiting regular expression will be used to split the input.
@param pattern The regular expression to use as a split delimiter.
@param input The String to split.
@param limit The limit on the size of the returned Vector
.Values <= 0 produce the same behavior as the SPLIT_ALL constant which causes the limit to be ignored and splits to be performed on all occurrences of the pattern. You should use the SPLIT_ALL constant to achieve this behavior instead of relying on the default behavior associated with non-positive limit values.
@exception MalformedPerl5PatternException If there is an error inthe expression. You are not forced to catch this exception because it is derived from RuntimeException.
-
org.apache.pdfbox.util.Splitter.split()
This will take a document and split into several other documents.
@param document The document to split.
@return A list of all the split documents.
@throws IOException If there is an IOError
-
org.apache.regexp.RE.split()
Splits a string into an array of strings on regular expression boundaries. This function works the same way as the Perl function of the same name. Given a regular expression of "[ab]+" and a string to split of "xyzzyababbayyzabbbab123", the result would be the array of Strings "[xyzzy, yyz, 123]".
@param s String to split on this regular exression
@return Array of strings
-
org.apache.sqoop.mapreduce.db.netezza.NetezzaDBDataSliceSplitter.split()
-
org.apache.yoko.rmi.util.ByteString.split()
-
org.broadinstitute.gatk.utils.GenomeLoc.split()
Splits the contig into to regions: [start,split point) and [split point, end].
@param splitPoint The point at which to split the contig. Must be contained in the given interval.
@return A two element array consisting of the genome loc before the split and the one after.
-
org.drools.guvnor.server.files.RestAPI.split()
-
org.eclipse.swt.widgets.Text.split()
-
org.exoplatform.services.chars.StringTokenizer.split()
-
org.fnlp.ml.types.InstanceSet.split()
分割样本集,将样本集合中样本放随机放在两个集合,大小分别为i/n,(n-i)/n
@param i 第一个集合比例
@param n 集合样本总数(相对于i)
@return
-
org.geomajas.plugin.geocoder.api.SplitGeocoderStringService.split()
Split the given string in a list of strings according to the separator convention used. After splitting the biggest area should come first (assuming the original format had a notion of such ordering).
@param location location to split
@return list of strings with split location
-
org.gridgain.grid.kernal.processors.ggfs.GridGgfsFileAffinityRange.split()
Splits range into collection if smaller ranges with length equal to {@code maxSize}.
@param maxSize Split part maximum size.
@return Collection of range parts.
-
org.gwtwidgets.client.util.regex.Pattern.split()
Split an input string by the pattern's regular expression
@param input
@return Array of strings
-
org.hornetq.api.core.SimpleString.split()
Splits this SimpleString into an array of SimpleString using the char param as the delimiter. i.e. "a.b" would return "a" and "b" if . was the delimiter
@param delim
-
org.ictclas4j.segment.Segment.split()
-
org.itsnat.impl.core.css.lex.SourceCode.split()
-
org.jfree.layouting.renderer.model.InlineRenderBox.split()
-
org.jfree.layouting.renderer.model.RenderBox.split()
Performs a simple split. This box will be altered to form the left/top side of the split, and a derived empty box will be returned, which makes up the right/bottom side.
A split will only happen on inline-boxes during the line-break-step. In the ordinary layouting, splitting is not necesary.
@param axis
@return
-
org.jitterbit.ui.widget.split.KongaSplitPane.split()
Sets the left (top) and right (bottom) components.
-
org.locationtech.udig.tools.geometry.split.SplitStrategy.split()
@param geomToSplit
@return A list of the resultant geometries.
-
org.pdfbox.util.Splitter.split()
This will take a document and split into several other documents.
@param document The document to split.
@return A list of all the split documents.
@throws IOException If there is an IOError
-
org.pentaho.reporting.engine.classic.core.layout.model.InlineRenderBox.split()
-
org.pentaho.reporting.engine.classic.core.layout.model.RenderBox.split()
Performs a simple split. This box will be altered to form the left/top side of the split, and a derived empty box will be returned, which makes up the right/bottom side.
A split will only happen on inline-boxes during the line-break-step. In the ordinary layouting, splitting is not necesary.
@param axis
@return
-
org.renjin.primitives.text.regex.RE.split()
Splits a string into an array of strings on regular expression boundaries. This function works the same way as the Perl function of the same name. Given a regular expression of "[ab]+" and a string to split of "xyzzyababbayyzabbbab123", the result would be the array of Strings "[xyzzy, yyz, 123]".
Please note that the first string in the resulting array may be an empty string. This happens when the very first character of input string is matched by the pattern.
@param s String to split on this regular exression
@return Array of strings
-
org.semanticweb.owl.util.NamespaceUtil.split()
Splits a string into a namespace and local name.
@param s The string to be split.
@param result May be null
. If not null
the method willfill the array with the result and return the passed in array. This allows a String array to be reused. If this parameter is null
then a new String array will be created to hold the result. The size of the array must be 2
@return The result of the split. The first element corresponds to the namespaceand the second element corresponds to the local name. If the string could not be split into a namespace and local name then the first element will be an empty string and the second element will an empty string
-
org.semanticweb.owlapi.util.NamespaceUtil.split()
Splits a string into a namespace and local name.
@param s The string to be split.
@param result May be null
. If not null
the method willfill the array with the result and return the passed in array. This allows a String array to be reused. If this parameter is null
then a new String array will be created to hold the result. The size of the array must be 2
@return The result of the split. The first element corresponds to the namespaceand the second element corresponds to the local name. If the string could not be split into a namespace and local name then the first element will be an empty string and the second element will an empty string
-
org.springframework.batch.core.partition.StepExecutionSplitter.split()
Partition the provided {@link StepExecution} into a set of parallelexecutable instances with the same parent {@link JobExecution}. The grid size will be treated as a hint for the size of the collection to be returned. It may or may not correspond to the physical size of an execution grid.
On a restart clients of the {@link StepExecutionSplitter} should expectit to reconstitute the state of the last failed execution and only return those executions that need to be restarted. Thus the grid size hint will be ignored on a restart.
@param stepExecution the {@link StepExecution} to be partitioned.
@param gridSize a hint for the splitter if the size of the grid is known
@return a set of {@link StepExecution} instances for remote processing
@throws JobExecutionException if the split cannot be made
-
org.springframework.data.elasticsearch.core.geo.GeoPoint.split()
-
org.unidal.helper.Splitters.StringSplitter.split()
-
pt.opensoft.text.Regex.split()
-
ptolemy.data.MatrixToken.split()
Split this matrix into multiple matrices. In this base class, this method simply throws an exception. Derived classes provide the implementation.
The matrices are produced from submatrices extracted left-to-right, top-to-bottom, in a raster scan pattern. For example, if rowSplit = {1, 2}, columnSplit = {2, 1}, and the input matrix is as follows:
1 2 3 4 5 6 7 8 9
then the first matrix out is a column vector:
1 4
The second matrix out is
2 3 5 6
The third is
7
(a 1x1 matrix) and the fourth is
8 9
a row vector. If the input does not have enough elements to fill the specified output matrices, then zeros (of the same type as the input elements) are used. If the input is larger than is required to fill the specified output, then the additional values are discarded.
@param rows The number of rows per submatrix.
@param columns The number of columns per submatrix.
@return An array of matrix tokens.
@exception IllegalActionException If the operation is not supported.
-
split.srx.Document.split()