クラス SStringImpl

java.lang.Object
org.wcardinal.controller.data.internal.SBaseImpl<T>
org.wcardinal.controller.data.internal.SStringImpl
すべての実装されたインタフェース:
Comparable<String>, SBase<String>, SLockable, SScalar<String>, SString, SVariable, Unlockable

@Component @Scope("prototype") public class SStringImpl extends SBaseImpl<T> implements SString
  • コンストラクタの詳細

    • SStringImpl

      public SStringImpl()
    • SStringImpl

      public SStringImpl(String initialValue)
  • メソッドの詳細

    • compareTo

      public int compareTo(String string)
      インタフェースからコピーされた説明: SString
      Compares this string and the specified string lexicographically.
      定義:
      compareTo インタフェース内 Comparable<String>
      定義:
      compareTo インタフェース内 SString
      パラメータ:
      string - string to be compared
      戻り値:
      a negative integer, zero, or a positive integer as this string is less than, equal to, or greater than the specified string
      関連項目:
    • compareToIgnoreCase

      public int compareToIgnoreCase(String string)
      インタフェースからコピーされた説明: SString
      Compares this string and the specified string lexicographically, ignoring case differences.
      定義:
      compareToIgnoreCase インタフェース内 SString
      パラメータ:
      string - string to be compared
      戻り値:
      a negative integer, zero, or a positive integer as this string is less than, equal to, or greater than the specified string
      関連項目:
    • concat

      public String concat(String string)
      インタフェースからコピーされた説明: SString
      Concatenates the specified string to the end of this string. Returns null if this string is null.
      定義:
      concat インタフェース内 SString
      パラメータ:
      string - string to be concatenated
      戻り値:
      concatenated string
      関連項目:
    • contains

      public boolean contains(CharSequence sequence)
      インタフェースからコピーされた説明: SString
      Returns true if this string contains the specified sequence of char values.
      定義:
      contains インタフェース内 SString
      パラメータ:
      sequence - sequence to search for
      戻り値:
      true if this string contains the specified sequence of char values
      関連項目:
    • endsWith

      public boolean endsWith(String suffix)
      インタフェースからコピーされた説明: SString
      Returns true if this string ends with the specified suffix.
      定義:
      endsWith インタフェース内 SString
      パラメータ:
      suffix - suffix to search for
      戻り値:
      true if this string ends with the specified suffix
      関連項目:
    • equalsIgnoreCase

      public boolean equalsIgnoreCase(String string)
      インタフェースからコピーされた説明: SString
      Returns true if this string is equal to the specified string, ignoring case considerations.
      定義:
      equalsIgnoreCase インタフェース内 SString
      パラメータ:
      string - string to be compared
      戻り値:
      true if this string is equal to the specified string ignoring case considerations
      関連項目:
    • indexOf

      public int indexOf(int ch)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the first occurrence of the specified character. Returns -1 if no such character occurs in this string.
      定義:
      indexOf インタフェース内 SString
      パラメータ:
      ch - character to search for
      戻り値:
      the index within this string of the first occurence of the specified character
      関連項目:
    • indexOf

      public int indexOf(int ch, int fromIndex)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index. Returns -1 if no such character occurs in this string.
      定義:
      indexOf インタフェース内 SString
      パラメータ:
      ch - character to search for
      fromIndex - index to start the search from
      戻り値:
      the index within this string of the first occurence of the specified character
      関連項目:
    • indexOf

      public int indexOf(String substring)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the first occurrence of the specified substring. Returns -1 if no such substring occurs in this string.
      定義:
      indexOf インタフェース内 SString
      パラメータ:
      substring - substring to search for
      戻り値:
      index within this string of the first occurence of the specified substring
      関連項目:
    • indexOf

      public int indexOf(String substring, int fromIndex)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the first occurrence of the specified substring, starting at the specified index. Returns -1 if no such substring occurs in this string.
      定義:
      indexOf インタフェース内 SString
      パラメータ:
      substring - substring to searhc for
      fromIndex - where to begin searching the specified substring
      戻り値:
      index within this string of the first occurrence of the specified substring
      関連項目:
    • isEmpty

      public boolean isEmpty()
      インタフェースからコピーされた説明: SScalar
      Returns true if the size is zero.
      定義:
      isEmpty インタフェース内 SScalar<String>
      定義:
      isEmpty インタフェース内 SString
      戻り値:
      {boolean} true if the size is zero
      関連項目:
    • lastIndexOf

      public int lastIndexOf(int ch)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the last occurrence of the specified character. Returns -1 if no such character occurs in this string.
      定義:
      lastIndexOf インタフェース内 SString
      パラメータ:
      ch - character to searhc for
      戻り値:
      index within this string of the last occurrence of the specified character
      関連項目:
    • lastIndexOf

      public int lastIndexOf(int ch, int fromIndex)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the last occurrence of the specified character, searching backward starting at the specified index. Returns -1 if no such character occurs in this string.
      定義:
      lastIndexOf インタフェース内 SString
      パラメータ:
      ch - character to search for
      fromIndex - where to begin searching the specified character
      戻り値:
      index within this string of the last occurrence of the specified character
      関連項目:
    • lastIndexOf

      public int lastIndexOf(String substring)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the last occurrence of the specified substring. Returns -1 if no such substring occurs in this string.
      定義:
      lastIndexOf インタフェース内 SString
      パラメータ:
      substring - substring to search for
      戻り値:
      index within this string of the last occurrence of the specified substring
      関連項目:
    • lastIndexOf

      public int lastIndexOf(String substring, int fromIndex)
      インタフェースからコピーされた説明: SString
      Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the specified index. Returns -1 if no such substring occurs in this string.
      定義:
      lastIndexOf インタフェース内 SString
      パラメータ:
      substring - substring to search for
      fromIndex - where to begin searching the specified substring
      戻り値:
      index within this string of the last occurrence of the specified substring
      関連項目:
    • length

      public int length()
      インタフェースからコピーされた説明: SString
      Returns the length of this string. Returns -1 if this string is null.
      定義:
      length インタフェース内 SString
      戻り値:
      length of this string
      関連項目:
    • matches

      public boolean matches(String regex)
      インタフェースからコピーされた説明: SString
      Returns true if this string matches the specified regular expression. Returns false if this string is null.
      定義:
      matches インタフェース内 SString
      パラメータ:
      regex - regular expression to which this string is to be matched
      戻り値:
      true if this string matches the specified regular expression
      関連項目:
    • startsWith

      public boolean startsWith(String prefix)
      インタフェースからコピーされた説明: SString
      Returns true if this string starts with the specified prefix. Returns false if this string is null.
      定義:
      startsWith インタフェース内 SString
      パラメータ:
      prefix - prefix to search for
      戻り値:
      true if the substring of this string starts with the specified prefix
      関連項目:
    • startsWith

      public boolean startsWith(String prefix, int toffset)
      インタフェースからコピーされた説明: SString
      Returns true if the substring of this string beginning at the specified index starts with the specified prefix. Returns false if this string is null.
      定義:
      startsWith インタフェース内 SString
      パラメータ:
      prefix - prefix to search for
      toffset - where to begin looking in this string
      戻り値:
      true if the substring of this string beginning at the specified index starts with the specified prefix
      関連項目:
    • substring

      public String substring(int beginIndex)
      インタフェースからコピーされた説明: SString
      Returns a new string that is a substring of this string.
      定義:
      substring インタフェース内 SString
      パラメータ:
      beginIndex - begining index (inclusive)
      戻り値:
      substring of this string
      関連項目:
    • substring

      public String substring(int beginIndex, int endIndex)
      インタフェースからコピーされた説明: SString
      Returns a new string that is a substring of this string.
      定義:
      substring インタフェース内 SString
      パラメータ:
      beginIndex - beginning index (inclusive)
      endIndex - ending index (exclusive)
      戻り値:
      substring of this string
      関連項目:
    • toLowerCase

      public String toLowerCase()
      インタフェースからコピーされた説明: SString
      Converts all of the characters in this String to lower case using the rules of the default locale and returns it. Returns null if this string is null.
      定義:
      toLowerCase インタフェース内 SString
      戻り値:
      string converted to lowercase
      関連項目:
    • toLowerCase

      public String toLowerCase(Locale locale)
      インタフェースからコピーされた説明: SString
      Converts all of the characters in this String to lower case using the rules of the given Locale and returns it. Returns null if this string is null.
      定義:
      toLowerCase インタフェース内 SString
      パラメータ:
      locale - use the case transformation rules for this locale
      戻り値:
      string converted to lowercase
      関連項目:
    • toUpperCase

      public String toUpperCase()
      インタフェースからコピーされた説明: SString
      Converts all of the characters in this String to upper case using the rules of the default locale and returns it. Returns null if this string is null.
      定義:
      toUpperCase インタフェース内 SString
      戻り値:
      string converted to uppercase
      関連項目:
    • toUpperCase

      public String toUpperCase(Locale locale)
      インタフェースからコピーされた説明: SString
      Converts all of the characters in this String to upper case using the rules of the given locale and returns it. Returns null if this string is null.
      定義:
      toUpperCase インタフェース内 SString
      パラメータ:
      locale - use the case transformation rules for this locale
      戻り値:
      string converted to uppercase
      関連項目:
    • trim

      public String trim()
      インタフェースからコピーされた説明: SString
      Returns a copy of this string, with leading and trailing whitespace omitted. Returns null if this string is null.
      定義:
      trim インタフェース内 SString
      戻り値:
      a copy of this string without leading and trailing whitespace
      関連項目:
    • equals

      public boolean equals(String target)
      インタフェースからコピーされた説明: SString
      Returns true if the specified target is equal to this.
      定義:
      equals インタフェース内 SString
      パラメータ:
      target - the target to be compared
      戻り値:
      true if the specified target is equal to this
    • get

      public String get()
      インタフェースからコピーされた説明: SScalar
      Returns the current value.
      定義:
      get インタフェース内 SScalar<T>
      戻り値:
      the current value
    • set

      public String set(String value)
      インタフェースからコピーされた説明: SScalar
      Sets to the specified value.
      定義:
      set インタフェース内 SScalar<T>
      パラメータ:
      value - the new value
      戻り値:
      the previous value
    • reset

      public String reset()
      インタフェースからコピーされた説明: SScalar
      Resets to the current value.
      定義:
      reset インタフェース内 SScalar<T>
      戻り値:
      the current value
    • getValue

      public String getValue()
      インタフェースからコピーされた説明: SScalar
      Returns the current value.
      定義:
      getValue インタフェース内 SScalar<T>
      戻り値:
      the current value
    • setValue

      public String setValue(String value)
      インタフェースからコピーされた説明: SScalar
      Sets to the specified value.
      定義:
      setValue インタフェース内 SScalar<T>
      パラメータ:
      value - the new value
      戻り値:
      the previous value
    • resetValue

      public String resetValue()
      インタフェースからコピーされた説明: SScalar
      Resets to the current value.
      定義:
      resetValue インタフェース内 SScalar<T>
      戻り値:
      the current value
    • toDirty

      public void toDirty()
      インタフェースからコピーされた説明: SScalar
      Marks itself as updated.
      定義:
      toDirty インタフェース内 SScalar<T>
    • compareAndSet

      public boolean compareAndSet(String expected, String update)
      インタフェースからコピーされた説明: SScalar
      Atomically sets to the 'update' if the 'expected' is equal to the current value.
      定義:
      compareAndSet インタフェース内 SScalar<T>
      パラメータ:
      expected - the expected value
      update - the new value
      戻り値:
      true if the 'expected' is equal to the current value
    • getAndSet

      public String getAndSet(String value)
      インタフェースからコピーされた説明: SScalar
      Atomically sets to the specified value and returns the old value.
      定義:
      getAndSet インタフェース内 SScalar<T>
      パラメータ:
      value - the new value
      戻り値:
      the previous value
    • pack

      public Object pack(SData sdata)
      定義:
      pack インタフェース内 SBase<T>
    • onAuthorized

      public void onAuthorized(long authorizedRevision)
      定義:
      onAuthorized インタフェース内 SBase<T>
    • unpack

      public SChange unpack(com.fasterxml.jackson.databind.JsonNode valueNode, long revision, SData sdata) throws Exception
      定義:
      unpack インタフェース内 SBase<T>
      例外:
      Exception
    • compact

      public void compact(long authorizedRevision)
      定義:
      compact インタフェース内 SBase<T>
    • toString

      public String toString()
      オーバーライド:
      toString クラス内 Object
    • equals

      public boolean equals(Object value)
      定義:
      equals インタフェース内 SScalar<T>
      オーバーライド:
      equals クラス内 Object
    • initialize

      public void initialize()
      インタフェースからコピーされた説明: SVariable
      Initialize this.
      定義:
      initialize インタフェース内 SVariable
    • setNonNull

      public void setNonNull(boolean isNonNull)
      定義:
      setNonNull インタフェース内 SBase<T>
    • size

      public int size()
      インタフェースからコピーされた説明: SScalar
      If the value is Collection, Map, ArrayNode or ObjectNode, returns the its size. If the value is an array, returns the its length. If the value is null, returns 0. For anything else, returns 1.
      定義:
      size インタフェース内 SScalar<T>
      戻り値:
      the size of this value
    • isNull

      public boolean isNull()
      インタフェースからコピーされた説明: SScalar
      Returns true if the value is null.
      定義:
      isNull インタフェース内 SScalar<T>
      戻り値:
      true if the value is null
    • isNotNull

      public boolean isNotNull()
      インタフェースからコピーされた説明: SScalar
      Returns true if the value is not null.
      定義:
      isNotNull インタフェース内 SScalar<T>
      戻り値:
      true if the value is not null
    • indexOf

      public int indexOf(Object o)
      インタフェースからコピーされた説明: SScalar
      If the value is List, ArrayNode or an array, returns the index of the specified value. Otherwise, returns -1.
      定義:
      indexOf インタフェース内 SScalar<T>
      パラメータ:
      o - value to search for
      戻り値:
      the index of the specified value
    • lastIndexOf

      public int lastIndexOf(Object o)
      インタフェースからコピーされた説明: SScalar
      If the value is List, ArrayNode or an array, returns the last index of the specified value. Otherwise, returns -1.
      定義:
      lastIndexOf インタフェース内 SScalar<T>
      パラメータ:
      o - value to search for
      戻り値:
      the last index of the specified value
    • contains

      public boolean contains(Object o)
      インタフェースからコピーされた説明: SScalar
      Returns true if this contains the specified value.
      定義:
      contains インタフェース内 SScalar<T>
      パラメータ:
      o - value to search for
      戻り値:
      true if this contains the specified value
    • containsAll

      public boolean containsAll(Collection<?> others)
      インタフェースからコピーされた説明: SScalar
      Returns true if this contains all the specified values.
      定義:
      containsAll インタフェース内 SScalar<T>
      パラメータ:
      others - values to search for
      戻り値:
      true if this contains all the specified values