Class LogicalSeg
- java.lang.Object
-
- com.automation_pros.odva.cip.path.PathSegment
-
- com.automation_pros.odva.cip.path.LogicalSeg
-
- All Implemented Interfaces:
java.lang.Comparable<PathSegment>
- Direct Known Subclasses:
AttributeSeg,ClassSeg,ConxPtSeg,EKeySeg,ExtLogSeg,InstanceSeg,MemberSeg,ServiceSeg
public abstract class LogicalSeg extends PathSegment
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLogicalSeg.LogicalParserAn attribute segment must have a ID number that fits in an unsigned word.-
Nested classes/interfaces inherited from class com.automation_pros.odva.cip.path.PathSegment
PathSegment.HasAlternateHex
-
-
Field Summary
Fields Modifier and Type Field Description protected byteformatstatic byteSEGTYPEprotected bytesubtypeprotected intvalue-
Fields inherited from class com.automation_pros.odva.cip.path.PathSegment
identifierChars, segtype
-
-
Constructor Summary
Constructors Constructor Description LogicalSeg(byte subt)LogicalSeg(byte subt, byte fmt, int val)LogicalSeg(byte subt, int val)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(PathSegment o)intgetBytes()Obtain the number of bytes needed to encode this segment instance in packed format.bytegetFormat()bytegetSubtype()protected java.util.List<java.lang.String>getTokens(java.lang.String keyword)intgetValue()intgetWords()Obtain the number of 16-bit words needed to encode this segment instance in padded format.inthashCode()voidput(java.nio.ByteBuffer dest, boolean padded)Encode the current instance to the given destination.PathSegmentset(java.nio.ByteBuffer source, boolean padded)Replace the current instance content with the decoded source bytes.voidsetFormat(byte format)voidsetSubtype(byte subtype)voidsetValue(int value)java.lang.StringsimpleString()Supply s simple descriptive name usable when browsing a hierarchy.-
Methods inherited from class com.automation_pros.odva.cip.path.PathSegment
decode, decodeAll, equals, getSegtype, getTokens, hexString, mergeTokens, registerHandler, setSegtype, toString
-
-
-
-
Field Detail
-
SEGTYPE
public static final byte SEGTYPE
- See Also:
- Constant Field Values
-
subtype
protected byte subtype
-
format
protected byte format
-
value
protected int value
-
-
Method Detail
-
set
public PathSegment set(java.nio.ByteBuffer source, boolean padded)
Description copied from class:PathSegmentReplace the current instance content with the decoded source bytes.The caller must ensure that the instance is appropriate for the bytes supplied. This permits instance re-use in optimized applications.
- Specified by:
setin classPathSegment- Parameters:
source- The bytes to be decoded. The position will be left after the last byte of the decoded segment.padded- Alternate format selection. Packed format when false.- Returns:
- The same instance.
-
put
public void put(java.nio.ByteBuffer dest, boolean padded)Description copied from class:PathSegmentEncode the current instance to the given destination.- Specified by:
putin classPathSegment- Parameters:
dest- The buffer receiving the complete encoded instance.padded- Alternate format selection. Packed format when false.
-
getSubtype
public byte getSubtype()
-
setSubtype
public void setSubtype(byte subtype)
-
getFormat
public byte getFormat()
-
setFormat
public void setFormat(byte format)
-
getValue
public int getValue()
-
setValue
public void setValue(int value)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(PathSegment o)
- Specified by:
compareToin interfacejava.lang.Comparable<PathSegment>- Overrides:
compareToin classPathSegment
-
getWords
public int getWords()
Description copied from class:PathSegmentObtain the number of 16-bit words needed to encode this segment instance in padded format. The default implementation assumes the padded format is simply the size of the packed format, rounded up to an even number of bytes.- Overrides:
getWordsin classPathSegment- Returns:
- Number of words, assuming put() will be called with padded true.
-
getBytes
public int getBytes()
Description copied from class:PathSegmentObtain the number of bytes needed to encode this segment instance in packed format.- Specified by:
getBytesin classPathSegment- Returns:
- Number of bytes, assuming put() will be called with padded false.
-
simpleString
public java.lang.String simpleString()
Description copied from class:PathSegmentSupply s simple descriptive name usable when browsing a hierarchy. A simple type name for elementary types, a non-detailed description for complex types.- Specified by:
simpleStringin classPathSegment- Returns:
-
getTokens
protected java.util.List<java.lang.String> getTokens(java.lang.String keyword)
-
-