public static class SimpleExpressionResolver.ResolutionResult
extends java.lang.Object
resolving some expression content.| Constructor | Description |
|---|---|
ResolutionResult(java.lang.String value,
boolean isDefault) |
Creates a new ResolutionResult.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getValue() |
Gets the resolved value;
|
boolean |
isDefault() |
Gets whether the resolved value represents some sort of default value that was embedded in
the expression content; e.g.
|
public ResolutionResult(java.lang.String value,
boolean isDefault)
value - the resolved value. Cannot be null.isDefault - true if value was a default value encoded in the expression content;
false otherwisepublic java.lang.String getValue()
nullpublic boolean isDefault()
defaultValue in a traditional JBoss AS style expression with syntax
propertyName[,propertyName]*[:defaultValue].true if the value is a default value.Copyright © 2018 JBoss by Red Hat. All rights reserved.