Class ModalWindow.MaskType
- java.lang.Object
-
- org.apache.wicket.util.string.StringValue
-
- org.apache.wicket.util.lang.EnumeratedType
-
- org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.MaskType
-
- All Implemented Interfaces:
Serializable,org.apache.wicket.util.io.IClusterable
- Enclosing class:
- ModalWindow
public static final class ModalWindow.MaskType extends org.apache.wicket.util.lang.EnumeratedType
Mask is the element behind the window, that prevents user from interacting the rest of page. Mask can be either- the mask is invisibleTRANSPARENT- the mask is black with small opacity (10%)SEMI_TRANSPARENT
- Author:
- Matej Knopp
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ModalWindow.MaskTypeSEMI_TRANSPARENTVisible mask (black with low opacity).static ModalWindow.MaskTypeTRANSPARENTTransparent mask (not visible).
-
Method Summary
-
Methods inherited from class org.apache.wicket.util.string.StringValue
afterFirst, afterLast, beforeFirst, beforeLast, equals, hashCode, isEmpty, isNull, repeat, repeat, replaceAll, to, toBoolean, toBoolean, toBooleanObject, toChar, toChar, toCharacter, toDouble, toDouble, toDoubleObject, toDuration, toDuration, toEnum, toEnum, toEnum, toInstant, toInstant, toInt, toInt, toInteger, toLong, toLong, toLongObject, toOptional, toOptionalBoolean, toOptionalCharacter, toOptionalDouble, toOptionalDuration, toOptionalEnum, toOptionalInstant, toOptionalInteger, toOptionalLong, toOptionalString, toString, toString, valueOf, valueOf, valueOf, valueOf, valueOf, valueOf, valueOf, valueOf
-
-
-
-
Field Detail
-
TRANSPARENT
public static final ModalWindow.MaskType TRANSPARENT
Transparent mask (not visible).
-
SEMI_TRANSPARENT
public static final ModalWindow.MaskType SEMI_TRANSPARENT
Visible mask (black with low opacity).
-
-