Uses of Interface
net.serenitybdd.screenplay.Question
Packages that use Question
Package
Description
-
Uses of Question in net.serenitybdd.screenplay
Fields in net.serenitybdd.screenplay declared as QuestionMethods in net.serenitybdd.screenplay that return QuestionModifier and TypeMethodDescription<T> Question<T> QuestionBuilder.answeredBy(Question<T> questionToAsk) Question.asADate()default Question<BigDecimal> Question.asBigDecimal()Question.asBoolean()default <T> Question<Collection<T>> Question.asCollectionOf(Class<T> type) Question.asDouble()default <T> Question<T> Question.asFloat()Question.asInteger()Question.asLong()Question.asString()Question.describedAs(String description) Returns a new question with the specified text as a subject.default <T> Question<T> Convert the answer to a question into another form using an arbitrary function.default <T> Question<Collection<T>> Convert all the matching answers to a question into another form using an arbitrary function.static <T> Question<T> ExternalValueQuestion.valueOf(T value) Methods in net.serenitybdd.screenplay with parameters of type QuestionModifier and TypeMethodDescriptionQuestionSubject.andQuestion(Question question) <T> Question<T> QuestionBuilder.answeredBy(Question<T> questionToAsk) <ANSWER> ANSWER<ANSWER> ANSWERRememberThat.MemoryBuilder.isAnsweredBy(Question<?> value) <ANSWER> voidstatic <T> Taskstatic <T> Consequence<T> static <T> Consequence<T> GivenWhenThen.seeThat(String subject, Question<? extends T> actual, org.hamcrest.Matcher<T> expected) static <T> Consequence<T>[]GivenWhenThen.seeThat(String subject, Question<? extends T> actual, org.hamcrest.Matcher<T>... expectedMatchers) static <T> Consequence<T> static <T> Consequence<T> static <T> Consequence<T> static <T> Consequence<T>[]static <T> Consequence<T> <T> Consequence<T> InteractiveConsequence.thenCheckThat(Question<? extends T> actual, org.hamcrest.Matcher<T> expected) Constructors in net.serenitybdd.screenplay with parameters of type QuestionModifierConstructorDescriptionBooleanQuestionConsequence(String subjectText, Question<Boolean> actual) BooleanQuestionConsequence(Question<Boolean> actual) PredicateConsequence(Question<T> actual, Predicate<T> expected) QuestionConsequence(String subjectText, Question<T> actual, org.hamcrest.Matcher<T> expected) QuestionConsequence(Question<T> actual, org.hamcrest.Matcher<T> expected) WithQuestion(String memoryKey, Question<?> question) Constructor parameters in net.serenitybdd.screenplay with type arguments of type Question -
Uses of Question in net.serenitybdd.screenplay.conditions
Methods in net.serenitybdd.screenplay.conditions with parameters of type QuestionModifier and TypeMethodDescriptionstatic <T> ConditionalPerformablestatic ConditionalPerformableConstructors in net.serenitybdd.screenplay.conditions with parameters of type Question -
Uses of Question in net.serenitybdd.screenplay.events
Methods in net.serenitybdd.screenplay.events that return QuestionConstructors in net.serenitybdd.screenplay.events with parameters of type Question -
Uses of Question in net.serenitybdd.screenplay.questions
Classes in net.serenitybdd.screenplay.questions that implement QuestionModifier and TypeClassDescriptionclassclassMaxQuestion<T extends Object & Comparable<? super T>>classMinQuestion<T extends Object & Comparable<? super T>>classclassRemembered<T>A question that returns a value previously remembered by the actor.classclassSortedQuestion<T extends Object & Comparable<? super T>>classclassMethods in net.serenitybdd.screenplay.questions that return QuestionModifier and TypeMethodDescriptionstatic <ANSWER> Question<ANSWER> TheValue.of(ANSWER value) static <ANSWER> Question<ANSWER> static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMaximumOf(Question<? extends Collection<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMaximumOf(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMinimumOf(Question<? extends Collection<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMinimumOf(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) AggregateQuestions.theReverse(Question<? extends List<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<List<T>> static <T extends Object & Comparable<? super T>>
Question<List<T>> AggregateQuestions.theSorted(Question<? extends List<T>> listQuestion, Comparator<? super T> comparator) AggregateQuestions.theSumOf(Question<? extends Collection<Integer>> listQuestion) AggregateQuestions.theTotalNumberOf(Question<? extends Collection<T>> listQuestion) Methods in net.serenitybdd.screenplay.questions with parameters of type QuestionModifier and TypeMethodDescriptionstatic <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMaximumOf(Question<? extends Collection<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMaximumOf(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMinimumOf(Question<? extends Collection<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<T> AggregateQuestions.theMinimumOf(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) AggregateQuestions.theReverse(Question<? extends List<T>> listQuestion) static <T extends Object & Comparable<? super T>>
Question<List<T>> static <T extends Object & Comparable<? super T>>
Question<List<T>> AggregateQuestions.theSorted(Question<? extends List<T>> listQuestion, Comparator<? super T> comparator) AggregateQuestions.theSumOf(Question<? extends Collection<Integer>> listQuestion) AggregateQuestions.theTotalNumberOf(Question<? extends Collection<T>> listQuestion) <T> voidConstructors in net.serenitybdd.screenplay.questions with parameters of type QuestionModifierConstructorDescriptionConsequenceGroup(Question<?> questionGroup) CountQuestion(Question<? extends Collection> listQuestion) MaxQuestion(Question<? extends Collection<T>> listQuestion) MaxQuestion(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) MinQuestion(Question<? extends Collection<T>> listQuestion) MinQuestion(Question<? extends Collection<T>> listQuestion, Comparator<? super T> comparator) QuestionWithDefinedSubject(Question<T> theQuestion, String subject) QuestionWithDefinedSubject(Question<T> theQuestion, String subject, List<Performable> precedingTasks) ReverseQuestion(Question<? extends List<T>> listQuestion) SortedQuestion(Question<? extends List<T>> listQuestion) SortedQuestion(Question<? extends List<T>> listQuestion, Comparator<? super T> comparator) SumQuestion(Question<? extends Collection<Integer>> listQuestion) -
Uses of Question in net.serenitybdd.screenplay.waits
Methods in net.serenitybdd.screenplay.waits with parameters of type QuestionConstructors in net.serenitybdd.screenplay.waits with parameters of type Question