Data Type Java

/*
 Derby - Class org.apache.derby.iapi.util.PropertyUtil
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to you under the Apache License, Version 2.0
 (the "License"); you may not use this file except in compliance with
 the License.  You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
public class Main {
  /**
   * Return a slice (substring) of the passed in value, optionally trimmed.
   * WARNING - endOffset is inclusive for historical reasons, unlike
   * String.substring() which has an exclusive ending offset.
   * 
   * @param value
   *          Value to slice, must be non-null.
   * @param beginOffset
   *          Inclusive start character
   * @param endOffset
   *          Inclusive end character
   * @param trim
   *          To trim or not to trim
   * @return Sliceed value.
   */
  public static String slice(String value, int beginOffset, int endOffset, boolean trim) {
    String retval = value.substring(beginOffset, endOffset + 1);
    if (trim)
      retval = retval.trim();
    return retval;
  }
}