Uses of Class
com.xceptance.xlt.api.data.ExclusiveDataProvider.Parser
-
Packages that use ExclusiveDataProvider.Parser Package Description com.xceptance.xlt.api.data Provides classes to make the handling of test data easier. -
-
Uses of ExclusiveDataProvider.Parser in com.xceptance.xlt.api.data
Fields in com.xceptance.xlt.api.data declared as ExclusiveDataProvider.Parser Modifier and Type Field Description static ExclusiveDataProvider.Parser<java.lang.String>ExclusiveDataProvider. DEFAULT_PARSERParser that just returns the received lines.Methods in com.xceptance.xlt.api.data that return ExclusiveDataProvider.Parser Modifier and Type Method Description static ExclusiveDataProvider.Parser<java.lang.String>ExclusiveDataProvider. getDefaultParser()Default parser that just returns the lines it receives.Methods in com.xceptance.xlt.api.data with parameters of type ExclusiveDataProvider.Parser Modifier and Type Method Description static <T> ExclusiveDataProvider<T>ExclusiveDataProvider. getInstance(java.lang.String fileName, boolean filterLineComments, ExclusiveDataProvider.Parser<T> parser)Returns the exclusive data provider responsible for the given file name.static <T> ExclusiveDataProvider<T>ExclusiveDataProvider. getInstance(java.lang.String fileName, ExclusiveDataProvider.Parser<T> parser)Returns the exclusive data provider responsible for the given file name.static <T> ExclusiveDataProvider<T>ExclusiveDataProvider. getInstance(java.lang.String fileName, java.lang.String encoding, boolean filterLineComments, ExclusiveDataProvider.Parser<T> parser)Returns the exclusive data provider responsible for the given file name.static <T> ExclusiveDataProvider<T>ExclusiveDataProvider. getInstance(java.lang.String fileName, java.lang.String encoding, ExclusiveDataProvider.Parser<T> parser)Returns the exclusive data provider responsible for the given file name.protected static <T> java.util.List<T>ExclusiveDataProvider. loadData(java.lang.String fileName, java.lang.String encoding, boolean filterLineComments, ExclusiveDataProvider.Parser<T> parser)Get the agent's exclusive data partition loaded from the given data file and parse this partition using the given parser.protected static <T> java.util.List<T>ExclusiveDataProvider. loadData(java.lang.String fileName, java.lang.String encoding, ExclusiveDataProvider.Parser<T> parser)Get the agent's exclusive data partition loaded from the given data file and parse this partition using the given parser.protected static <T> java.util.List<T>ExclusiveDataProvider. parse(java.util.List<java.lang.String> lines, ExclusiveDataProvider.Parser<T> parser)Parse the given lines and return the resulting data objects.Constructors in com.xceptance.xlt.api.data with parameters of type ExclusiveDataProvider.Parser Constructor Description ExclusiveDataProvider(java.lang.String fileName, boolean filterLineComments, ExclusiveDataProvider.Parser<T> parser)Creates a newExclusiveDataProviderinstance and initializes it with the agent's exclusive data partition loaded from the given data file.ExclusiveDataProvider(java.lang.String fileName, ExclusiveDataProvider.Parser<T> parser)Creates a newExclusiveDataProviderinstance and initializes it with the agent's exclusive data partition loaded from the given data file.ExclusiveDataProvider(java.lang.String fileName, java.lang.String encoding, boolean filterLineComments, ExclusiveDataProvider.Parser<T> parser)Creates a newExclusiveDataProviderinstance and initializes it with the agent's exclusive data partition loaded from the given data file.ExclusiveDataProvider(java.lang.String fileName, java.lang.String encoding, ExclusiveDataProvider.Parser<T> parser)Creates a newExclusiveDataProviderinstance and initializes it with the agent's exclusive data partition loaded from the given data file.
-