Package org.robovm.apple.foundation

Examples of org.robovm.apple.foundation.NSString


    return this;
  }

  @Override
  public Preferences putString (String key, String val) {
    nsDictionary.put(convertKey(key), new NSString(val));
    return this;
  }
View Full Code Here


    return value.floatValue();
  }

  @Override
  public String getString (String key) {
    NSString value = (NSString)nsDictionary.get(convertKey(key));
    if (value == null) return "";
    return value.toString();
  }
View Full Code Here

  public void remove (String key) {
    nsDictionary.remove(convertKey(key));
  }

  private NSString convertKey (String key) {
    return new NSString(key);
  }
View Full Code Here

    nsDictionary.put(convertKey(key), NSNumber.valueOf(val));
  }

  @Override
  public void putString (String key, String val) {
    nsDictionary.put(convertKey(key), new NSString(val));
  }
View Full Code Here

    return value.floatValue();
  }

  @Override
  public String getString (String key) {
    NSString value = (NSString)nsDictionary.get(convertKey(key));
    if (value == null) return "";
    return value.toString();
  }
View Full Code Here

  public void remove (String key) {
    nsDictionary.remove(convertKey(key));
  }

  private NSString convertKey (String key) {
    return new NSString(key);
  }
View Full Code Here

    nsDictionary.put(convertKey(key), NSNumber.valueOf(val));
  }

  @Override
  public void putString (String key, String val) {
    nsDictionary.put(convertKey(key), new NSString(val));
  }
View Full Code Here

    return value.floatValue();
  }

  @Override
  public String getString (String key) {
    NSString value = (NSString)nsDictionary.get(convertKey(key));
    if (value == null) return "";
    return value.toString();
  }
View Full Code Here

  public void remove (String key) {
    nsDictionary.remove(convertKey(key));
  }

  private NSString convertKey (String key) {
    return new NSString(key);
  }
View Full Code Here

TOP

Related Classes of org.robovm.apple.foundation.NSString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.