com.samsung.android.sdk.look.smartclip
Class SlookSmartClipMetaTag
- java.lang.Object
-
- com.samsung.android.sdk.look.smartclip.SlookSmartClipMetaTag
-
public class SlookSmartClipMetaTag extends java.lang.Object
A class that represents a meta tag. It is consisted of tag type and value.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
TAG_TYPE_APP_DEEP_LINK
Indicates that the meta tag contains application deep link data.static java.lang.String
TAG_TYPE_PLAIN_TEXT
Indicates that the meta tag contains plain text data.static java.lang.String
TAG_TYPE_TITLE
Indicates that the meta tag contains title data.static java.lang.String
TAG_TYPE_URL
Indicates that the meta tag contains URL data.
-
Constructor Summary
Constructors Constructor and Description SlookSmartClipMetaTag(java.lang.String tagType, java.lang.String value)
The constructor of SlookSmartClipMetaTag.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
getType()
Get the type of meta tagjava.lang.String
getValue()
Get the value of meta tagvoid
setType(java.lang.String tagType)
Set the type of meta tagvoid
setValue(java.lang.String value)
Set the value of meta tag
-
-
-
Field Detail
-
TAG_TYPE_PLAIN_TEXT
public static final java.lang.String TAG_TYPE_PLAIN_TEXT
Indicates that the meta tag contains plain text data.- See Also:
- Constant Field Values
-
TAG_TYPE_URL
public static final java.lang.String TAG_TYPE_URL
Indicates that the meta tag contains URL data.- See Also:
- Constant Field Values
-
TAG_TYPE_TITLE
public static final java.lang.String TAG_TYPE_TITLE
Indicates that the meta tag contains title data.- See Also:
- Constant Field Values
-
TAG_TYPE_APP_DEEP_LINK
public static final java.lang.String TAG_TYPE_APP_DEEP_LINK
Indicates that the meta tag contains application deep link data.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SlookSmartClipMetaTag
public SlookSmartClipMetaTag(java.lang.String tagType, java.lang.String value)
The constructor of SlookSmartClipMetaTag.- Parameters:
tagType
- The type of meta data. It is defined on SlookSmartClipMetaTag.value
- The value of meta data.- Since:
- 1.0.0
-
-
Method Detail
-
getType
public java.lang.String getType()
Get the type of meta tag- Returns:
- The type of meta tag
- Since:
- 1.0.0
-
getValue
public java.lang.String getValue()
Get the value of meta tag- Returns:
- The value of meta tag
- Since:
- 1.0.0
-
setType
public void setType(java.lang.String tagType)
Set the type of meta tag- Parameters:
tagType
- The type of meta data. It is defined on SlookSmartClipMetaTag.- Since:
- 1.0.0
-
setValue
public void setValue(java.lang.String value)
Set the value of meta tag- Parameters:
value
- The value of meta data.- Since:
- 1.0.0
-
-