public class BorderCollapse extends com.aspose.ms.lang.Struct<BorderCollapse> implements com.groupdocs.editor.htmlcss.css.ICssDeclaration
Represents a "border-collapse" declaration, which determines whether a table's borders are separated or collapsed.
Modifier and Type | Field and Description |
---|---|
static BorderCollapse |
Collapse
Represents collapsed-border table rendering model.
|
static BorderCollapse |
Inherit |
static BorderCollapse |
Initial |
static String |
Name |
static BorderCollapse |
Separate
Represents separated-border table rendering model.
|
static BorderCollapse |
Unset |
Constructor and Description |
---|
BorderCollapse() |
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
BorderCollapse |
Clone() |
void |
CloneTo(BorderCollapse that) |
boolean |
equals(BorderCollapse other) |
static boolean |
equals(BorderCollapse obj1,
BorderCollapse obj2) |
boolean |
equals(com.groupdocs.editor.htmlcss.css.ICssDeclaration other) |
boolean |
equals(Object obj) |
int |
getAnimationType()
All CSS properties have at least one animation type, which determines,
how they can be animated
|
boolean |
getInherited()
All CSS declarations are divided on inherited or non-inherited, what is
represented by this property
|
String |
getProperty()
In implementing type should return a property name as a string
|
String |
getValue()
In implementing type should return a value in a default string form,
without affecting serialization options
|
int |
hashCode() |
boolean |
isDefault()
In implementing type should define, whether a current value is a default
value of a declaration, or not
|
boolean |
isGlobal()
In implementing type should define, whether a current value is a global
value of a declaration (inherit [initial, unset]), or not
|
static boolean |
op_Equality(BorderCollapse first,
BorderCollapse second)
Checks whether two "BorderCollapse" values are equal
|
static boolean |
op_Inequality(BorderCollapse first,
BorderCollapse second)
Checks whether two "BorderCollapse" values are not equal
|
String |
serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions)
In implementing type returns a serialized representation of an object as
a string
|
void |
serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions,
com.aspose.ms.System.IO.TextWriter output)
In implementing type writes a serialized representation of an object to
the specified output TextWriter implementation
|
static BorderCollapse |
tryFromKeyword(String keyword)
Tries to recognize a specified keyword as a proper keyword value of the
'border-collapse' and return it on success or NULL on failure.
|
public static final BorderCollapse Collapse
Represents collapsed-border table rendering model.
public static final BorderCollapse Inherit
public static final BorderCollapse Initial
public static final String Name
public static final BorderCollapse Separate
Represents separated-border table rendering model. Default value.
public static final BorderCollapse Unset
public BorderCollapse Clone()
Clone
in class com.aspose.ms.System.ValueType<BorderCollapse>
public void CloneTo(BorderCollapse that)
CloneTo
in class com.aspose.ms.System.ValueType<BorderCollapse>
public final boolean equals(BorderCollapse other)
public static boolean equals(BorderCollapse obj1, BorderCollapse obj2)
public final boolean equals(com.groupdocs.editor.htmlcss.css.ICssDeclaration other)
public final int getAnimationType()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
All CSS properties have at least one animation type, which determines, how they can be animated
getAnimationType
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean getInherited()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
All CSS declarations are divided on inherited or non-inherited, what is represented by this property
getInherited
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final String getProperty()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should return a property name as a string
getProperty
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final String getValue()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should return a value in a default string form, without affecting serialization options
getValue
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean isDefault()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should define, whether a current value is a default value of a declaration, or not
isDefault
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean isGlobal()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should define, whether a current value is a global value of a declaration (inherit [initial, unset]), or not
isGlobal
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public static boolean op_Equality(BorderCollapse first, BorderCollapse second)
Checks whether two "BorderCollapse" values are equal
first
- second
- public static boolean op_Inequality(BorderCollapse first, BorderCollapse second)
Checks whether two "BorderCollapse" values are not equal
first
- second
- public final String serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions)
com.groupdocs.editor.htmlcss.serialization.ISerializable
In implementing type returns a serialized representation of an object as a string
serialize
in interface com.groupdocs.editor.htmlcss.serialization.ISerializable
serializationOptions
- Serialization options. Not all properties
should be used, but argument should not be nullpublic final void serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions, com.aspose.ms.System.IO.TextWriter output)
com.groupdocs.editor.htmlcss.serialization.ISerializable
In implementing type writes a serialized representation of an object to the specified output TextWriter implementation
serialize
in interface com.groupdocs.editor.htmlcss.serialization.ISerializable
serializationOptions
- Serialization options. Not all properties
should be used, but argument should not be nulloutput
- TextWriter instance, to which resultant text will be
written. Should not be null.public static BorderCollapse tryFromKeyword(String keyword)
Tries to recognize a specified keyword as a proper keyword value of the 'border-collapse' and return it on success or NULL on failure. Doesn't support global keywords.
keyword
-