Package lumis.portal.bigdata
Interface ISynonym
-
@StableMinor(version="14.0", sinceVersion="11.1") public interface ISynonym
Big data synonym.- Since:
- 11.1.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
Returns the id.Locale
getLocale()
Returns the locale.String
getTitle()
Returns the title.Set<String>
getWords()
Returns the words.void
setLocale(Locale locale)
Sets the locale.void
setTitle(String title)
Sets the title.void
setWords(Set<String> words)
Sets the words.
-
-
-
Method Detail
-
getTitle
String getTitle()
Returns the title.- Returns:
- the title
- Since:
- 11.1.0
-
setTitle
void setTitle(String title)
Sets the title.- Parameters:
title
- the title value to set.- Throws:
IllegalArgumentException
- if the title isnull
orempty
.- Since:
- 11.1.0
-
getLocale
Locale getLocale()
Returns the locale.- Returns:
- the locale
- Since:
- 11.1.0
-
setLocale
void setLocale(Locale locale)
Sets the locale.- Parameters:
locale
- the locale value to set.- Throws:
IllegalArgumentException
- if the given locale isnull
.- Since:
- 11.1.0
-
setWords
void setWords(Set<String> words)
Sets the words.- Parameters:
words
- the words value to set.- Throws:
IllegalArgumentException
- if the given set isnull
or if it has less than two items.- Since:
- 11.1.0
-
getId
String getId()
Returns the id.- Returns:
- the id
- Since:
- 11.1.0
-
-