Searched refs:getPropertyBoolean (Results 1 – 2 of 2) sorted by relevance
180 assertThat(document.getPropertyBoolean("booleanKey1")).isTrue(); in testDocumentGetSingleValue()574 assertThat(doc.getPropertyBoolean("propBools")).isFalse(); in testRetrieveTopLevelProperties()625 assertThat(doc.getPropertyBoolean("propDocument.propBools")).isFalse(); in testRetrieveNestedProperties()706 assertThat(doc.getPropertyBoolean("propDocument.propBools")).isFalse(); in testRetrieveNestedPropertiesMultipleNestedDocuments()736 assertThat(doc.getPropertyBoolean("propBools[0]")).isFalse(); in testRetrieveTopLevelPropertiesIndex()812 assertThrows(IllegalArgumentException.class, () -> doc.getPropertyBoolean(".")); in testNestedProperties_arrayTypesInvalidPath()900 assertThat(doc.getPropertyBoolean("propDocument[1].propBools")).isTrue(); in testRetrieveNestedPropertiesIntermediateIndex()973 assertThat(doc.getPropertyBoolean("propDocument.propBools[0]")).isFalse(); in testRetrieveNestedPropertiesLeafIndex()1031 assertThat(doc.getPropertyBoolean("propDocument[1].propBools[0]")).isTrue(); in testRetrieveNestedPropertiesIntermediateAndLeafIndices()1177 assertThat(document.getPropertyBoolean("booleanKey1")).isTrue(); in testDocumentGetEmbeddingValue()
80 return getPropertyBoolean(CAMERAX_EXTENSIONS_ENABLED); in areCameraXExtensionsEnabled()239 public static boolean getPropertyBoolean(String property) { in getPropertyBoolean() method in PropertyUtil