Package com.comsol.model
Interface GeomAttribute
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
,PropFeature
,SelectionContainer
,SelectionEntity
public interface GeomAttribute extends PropFeature
Geometry Attribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]
entities(java.lang.String value, int dim)
Get the entities in dimension dim that have the given value.int[]
entities(java.lang.String value, java.lang.String oname, int dim)
Get the entities in dimension dim in the object oname that have the given value.java.lang.String[]
fieldTags()
Get the tags of all fields for this attribute.java.lang.String
fieldValue(java.lang.String attributeValue, java.lang.String fieldTag)
Get the value for a given field for a given attribute value.java.lang.String[]
objects(java.lang.String value)
Get the whole objects that have the given value.java.lang.String[]
objects(java.lang.String value, int dim)
Get the objects that have some entity in dimension dim that have the given value.java.lang.String[]
values()
Get all values of the attribute that exist in the current state of the geometry sequence.java.lang.String[]
valuesFinal()
Get all values of the attribute that exist in the finalized geometry.-
Methods inherited from interface com.comsol.model.ModelEntity
active, author, author, comments, comments, dateCreated, dateModified, docMarker, docMarker, help, help, icon, isactive, isActive, label, label, lastModifiedBy, model, model, name, name, resetAuthor, scope, tag, tag, timeCreated, timeModified, version, version
-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
Methods inherited from interface com.comsol.model.PropFeature
getAllowedPropertyValues, getBoolean, getBoolean, getBoolean, getBooleanArray, getBooleanMatrix, getDouble, getDouble, getDouble, getDoubleArray, getDoubleMatrix, getEntryKeyIndex, getEntryKeys, getInt, getInt, getInt, getIntArray, getIntMatrix, getReferenceArray, getString, getString, getString, getString, getStringArray, getStringMatrix, getType, getValueType, hasProperty, hasSelection, move, move, properties, remove, remove, selection, set, set, set, set, set, set, set, set, set, set, set, set, setEntry, setEntry, setEntry, setEntry, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex
-
Methods inherited from interface com.comsol.model.SelectionEntity
selection
-
-
-
-
Method Detail
-
entities
int[] entities(java.lang.String value, int dim)
Get the entities in dimension dim that have the given value.- Parameters:
value
- Attribute value.dim
- Entity dimension.- Returns:
- Entities that have the given value.
-
entities
int[] entities(java.lang.String value, java.lang.String oname, int dim)
Get the entities in dimension dim in the object oname that have the given value.- Parameters:
value
- Attribute value.oname
- Object name.dim
- Entity dimension.- Returns:
- Entities that have the given value.
-
fieldTags
java.lang.String[] fieldTags()
Get the tags of all fields for this attribute.- Returns:
- The tags.
-
fieldValue
java.lang.String fieldValue(java.lang.String attributeValue, java.lang.String fieldTag)
Get the value for a given field for a given attribute value.- Parameters:
attributeValue
- Attribute value.fieldTag
- Field tag.- Returns:
- The value.
-
objects
java.lang.String[] objects(java.lang.String value)
Get the whole objects that have the given value.- Parameters:
value
- Attribute value.- Returns:
- Objects that have the given value.
-
objects
java.lang.String[] objects(java.lang.String value, int dim)
Get the objects that have some entity in dimension dim that have the given value.- Parameters:
value
- Attribute value.dim
- Entity dimension.- Returns:
- Objects that have the given value.
-
values
java.lang.String[] values()
Get all values of the attribute that exist in the current state of the geometry sequence.- Returns:
- The values.
-
valuesFinal
java.lang.String[] valuesFinal()
Get all values of the attribute that exist in the finalized geometry.- Returns:
- The values.
-
-